view db/migrate/20150916161622_strict_character_lengths.rb @ 494:e508d3226214 default tip

Update gems
author nanaya <me@nanaya.net>
date Sun, 29 Oct 2023 23:24:13 +0900
parents 4608d12ebe03
children
line wrap: on
line source

class StrictCharacterLengths < ActiveRecord::Migration[4.2]
  def change
    change_table :pastes do |t|
      t.change :key, :string, :limit => 100
      t.change :secret, :string, :limit => 100
      t.change :language, :string, :limit => 100
    end
  end
end