Sha256: 3b51be50ccbb3349da11628a69f2d78610242e29adfd3a6bd33b7c60377ef4ba
Contents?: true
Size: 220 Bytes
Versions: 18
Compression:
Stored size: 220 Bytes
Contents
class CreateSongs < ActiveRecord::Migration def self.up create_table :songs do |t| t.string :title t.integer :album_id t.timestamps end end def self.down drop_table :songs end end
Version data entries
18 entries across 18 versions & 1 rubygems