blob: 145b8db1486177f06cb972235e60db6e086ac64f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# rubocop:disable all
class CreateReleases < ActiveRecord::Migration
def change
create_table :releases do |t|
t.string :tag
t.text :description
t.integer :project_id
t.timestamps
end
add_index :releases, :project_id
add_index :releases, [:project_id, :tag]
end
end
|