You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
music_rails_api/db/migrate/20170126190828_create_album...

9 lines
152 B

class CreateAlbums < ActiveRecord::Migration[5.0]
def change
create_table :albums do |t|
t.string "title"
t.datetime "date"
end
end
end