fixup! Add List model

This commit is contained in:
Douglas Barbosa Alexandre 2016-08-03 13:08:58 -03:00
parent 611dab2e52
commit 6e8d06a594

View file

@ -1,4 +1,8 @@
class CreateLists < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
create_table :lists do |t|
t.references :board, index: true, foreign_key: true, null: false