scinote-web/db/migrate/20150915074650_create_reports.rb

21 lines
485 B
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
class CreateReports < ActiveRecord::Migration
def change
create_table :reports do |t|
t.string :name, null: false
t.string :description
t.integer :grouped_by, null: false, default: 0
t.integer :project_id, null: false
t.integer :user_id, null: false
t.timestamps null: false
end
add_foreign_key :reports, :projects
add_index :reports, :project_id
add_foreign_key :reports, :users
add_index :reports, :user_id
end
end