This commit is contained in:
mgabdev
2020-12-15 19:31:30 -05:00
parent de0c977950
commit 75d52c841e
129 changed files with 2559 additions and 910 deletions

View File

@@ -0,0 +1,10 @@
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