gab-social/db/migrate/20201214051317_create_statu...

11 lines
272 B
Ruby

class CreateStatusBookmarkCollections < ActiveRecord::Migration[5.2]
def change
create_table :status_bookmark_collections do |t|
t.text :title, null: false, default: ''
t.integer :account_id, null: false
t.timestamps null: false
end
end
end