gitlabhq/db/migrate/20121119170638_create_services.rb

13 lines
238 B
Ruby
Raw Permalink Normal View History

2012-11-19 19:14:05 +01:00
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