view db/migrate/20150916161622_strict_character_lengths.rb @ 502:507b7f8e8b3b

Remove stdout logging option (already the default)
author nanaya <me@nanaya.net>
date Mon, 16 Dec 2024 01:12:44 +0900
parents d2ef59c9a4b4
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