2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2015-11-05 05:03:02 -05:00
|
|
|
class CreateReleases < ActiveRecord::Migration
|
2016-11-30 10:15:02 -05:00
|
|
|
DOWNTIME = false
|
|
|
|
|
2015-11-05 05:03:02 -05:00
|
|
|
def change
|
|
|
|
create_table :releases do |t|
|
|
|
|
t.string :tag
|
|
|
|
t.text :description
|
|
|
|
t.integer :project_id
|
|
|
|
|
2016-11-28 10:45:08 -05:00
|
|
|
t.timestamps null: true
|
2015-11-05 05:03:02 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :releases, :project_id
|
|
|
|
add_index :releases, [:project_id, :tag]
|
|
|
|
end
|
|
|
|
end
|