mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
13 lines
348 B
Ruby
13 lines
348 B
Ruby
class CreateProjects < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :projects do |t|
|
|
t.string :name, null: false
|
|
t.column :visibility, :integer, null: false, default: 0
|
|
t.datetime :due_date
|
|
t.integer :team_id, null: false
|
|
|
|
t.timestamps null: false
|
|
end
|
|
add_foreign_key :projects, :teams
|
|
end
|
|
end
|