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