summaryrefslogtreecommitdiff
path: root/db/migrate/20140729134820_create_labels.rb
blob: 589aced0d7668ce1386c414f83977eb47d7e4ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable all
class CreateLabels < ActiveRecord::Migration
  def change
    create_table :labels do |t|
      t.string :title
      t.string :color
      t.integer :project_id

      t.timestamps null: true
    end
  end
end