Sha256: a122b23ac5126785a363e010b7a26baf5df697fb34742a49d06d4e2a210bf615

Contents?: true

Size: 193 Bytes

Versions: 62

Compression:

Stored size: 193 Bytes

Contents

class CreateStars < ActiveRecord::Migration
  def self.up
    create_table :stars do |t|
      t.string :name

      t.timestamps
    end
  end

  def self.down
    drop_table :stars
  end
end

Version data entries

62 entries across 15 versions & 1 rubygems

Version Path
tabulous-0.0.1 test/applications/subtabs/db/migrate/20110223220634_create_stars.rb
tabulous-0.0.1 test/applications/main/db/migrate/20110223232552_create_stars.rb