mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-11 06:55:16 +00:00
10 lines
245 B
Ruby
10 lines
245 B
Ruby
class CreateLists < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :lists do |t|
|
|
t.references :account, foreign_key: { on_delete: :cascade }
|
|
t.string :title, null: false, default: ''
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|