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

Version Path
restfulie-nosqlite-1.0.4 tests/db/migrate/20100819165238_create_artists.rb
restfulie-1.1.1 tests/db/migrate/20100819165238_create_artists.rb
restfulie-1.1.0 tests/db/migrate/20100819165238_create_artists.rb
restfulie-nosqlite-1.0.3 tests/db/migrate/20100819165238_create_artists.rb
restfulie-1.0.3 tests/db/migrate/20100819165238_create_artists.rb