gitlabhq/db/migrate/20121119170638_create_services.rb
2012-11-20 11:33:49 +02:00

13 lines
238 B
Ruby

class CreateServices < ActiveRecord::Migration
def change
create_table :services do |t|
t.string :type
t.string :title
t.string :token
t.integer :project_id, null: false
t.timestamps
end
end
end