15 lines
218 B
Ruby
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
|