1
0
Fork 0
oldhaven/db/migrate/20110613125954_create_artis...

15 lines
218 B
Ruby

class CreateArtists < ActiveRecord::Migration
def self.up
create_table :artists do |t|
t.string :name
t.text :desc
t.timestamps
end
end
def self.down
drop_table :artists
end
end