1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-03-12 09:29:18 +01:00
fab-manager/db/migrate/20150429093251_create_project_steps.rb

12 lines
249 B
Ruby
Raw Normal View History

2015-05-05 03:10:25 +02:00
class CreateProjectSteps < ActiveRecord::Migration
def change
create_table :project_steps do |t|
t.text :description
t.string :title
t.belongs_to :project, index: true, foreign_key: true
t.timestamps
end
end
end