Sha256: 3156790e14e1214012ccc69a6f783a5e5303c3d681648bcc4533925c5c494f00

Contents?: true

Size: 181 Bytes

Versions: 5

Compression:

Stored size: 181 Bytes

Contents

class CreateAuthors < ActiveRecord::Migration
  def self.up
    create_table :authors do |t|
      t.string :name
    end
  end
  
  def self.down
    drop_table :authors
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
pluginaweek-polymorphic_identity-0.1.0 test/app_root/db/migrate/001_create_authors.rb
polymorphic_identity-0.1.1 test/app_root/db/migrate/001_create_authors.rb
polymorphic_identity-0.0.5 test/app_root/db/migrate/001_create_authors.rb
polymorphic_identity-0.1.0 test/app_root/db/migrate/001_create_authors.rb
polymorphic_identity-0.0.4 test/app_root/db/migrate/001_create_authors.rb