mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
20 lines
422 B
Ruby
20 lines
422 B
Ruby
class CreateScenes < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :scenes do |t|
|
|
t.integer :scene_number
|
|
t.string :name
|
|
t.string :summary
|
|
t.integer :universe_id
|
|
t.integer :user_id
|
|
t.string :cause
|
|
t.string :description
|
|
t.string :results
|
|
t.string :prose
|
|
t.string :notes
|
|
t.string :private_notes
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|