Sha256: 0098819064d71b1486fcc7f30f3927c978bddeee571d5166ff2ab21e06af22b9
Contents?: true
Size: 225 Bytes
Versions: 5
Compression:
Stored size: 225 Bytes
Contents
class CreateArtists < ActiveRecord::Migration def self.up create_table :artists do |t| t.string :name t.integer :album_id t.timestamps end end def self.down drop_table :artists end end
Version data entries
5 entries across 5 versions & 2 rubygems