13 lines
261 B
Ruby
13 lines
261 B
Ruby
|
class CreateTrainingTasks < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :training_tasks do |t|
|
||
|
t.integer :project_id
|
||
|
t.integer :tracker_id
|
||
|
t.string :subject
|
||
|
t.text :description
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|