11 lines
187 B
Ruby
11 lines
187 B
Ruby
|
class CreateReleaseFormats < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :release_formats do |t|
|
||
|
t.string :name
|
||
|
t.string :hash
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|