2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-28 01:09:10 +11:00
|
|
|
class CreateLists < ActiveRecord::Migration[5.2]
|
2017-11-18 10:16:48 +11:00
|
|
|
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
|