mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
22 lines
489 B
Ruby
22 lines
489 B
Ruby
class CreateGroups < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :groups do |t|
|
|
t.string :name
|
|
t.string :description
|
|
t.string :other_names
|
|
t.integer :universe_id
|
|
t.integer :user_id
|
|
t.string :organization_structure
|
|
t.string :motivation
|
|
t.string :goal
|
|
t.string :obstacles
|
|
t.string :risks
|
|
t.string :inventory
|
|
t.string :notes
|
|
t.string :private_notes
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|