Gab-Social/db/migrate/20201214051317_create_status_bookmark_collections.rb

11 lines
272 B
Ruby
Raw Normal View History

2020-12-16 00:31:30 +00:00
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