debian-mirror-gitlab/db/migrate/20140729134820_create_labels.rb

12 lines
200 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class CreateLabels < ActiveRecord::Migration
def change
create_table :labels do |t|
t.string :title
t.string :color
t.integer :project_id
t.timestamps
end
end
end