Files
old-holivud2/db/migrate/20200228144628_create_downloads.rb
2020-05-31 22:38:19 +02:00

12 lines
223 B
Ruby

class CreateDownloads < ActiveRecord::Migration[6.0]
def change
create_table :downloads do |t|
t.references :project
t.string :name
t.string :release_type
t.timestamps
end
end
end