Gab-Social/db/migrate/20201214051317_create_status_bookmark_collections.rb
2020-12-15 19:31:30 -05:00

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