1
0
Fork 0
oldhaven/db/migrate/20110922185550_create_relea...

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