You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/db/migrate/20200214070108_create_upgra...

13 lines
246 B

class CreateUpgradeNotices < ActiveRecord::Migration[5.2]
def change
create_table :upgrade_notices do |t|
t.string :title
t.text :content
t.datetime :start_at
t.datetime :end_at
t.timestamps
end
end
end