grantcallendar/db/migrate/20220629060749_create_dicti...

12 lines
221 B
Ruby

class CreateDictionaries < ActiveRecord::Migration[5.2]
def change
create_table :dictionaries do |t|
t.string :shortcut
t.string :name
t.longtext :description
t.timestamps
end
end
end