Sha256: ca7f462a9ba1f6dde3f01c31abaca7ae030b15277a27fcdd18b7c2d33acd6667

Contents?: true

Size: 209 Bytes

Versions: 6

Compression:

Stored size: 209 Bytes

Contents

class WeNeedThings < ActiveRecord::Migration::Current
  def self.up
    create_table("things") do |t|
      t.column :content, :text
    end
  end

  def self.down
    drop_table "things"
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/migrations/rename/1_we_need_things.rb
ibm_db-5.1.0-x86-mingw32 test/migrations/rename/1_we_need_things.rb
ibm_db-5.0.5-x86-mingw32 test/migrations/rename/1_we_need_things.rb
ibm_db-5.0.4-x86-mingw32 test/migrations/rename/1_we_need_things.rb
ibm_db-5.0.3-x86-mingw32 test/migrations/rename/1_we_need_things.rb
ibm_db-5.0.2-x86-mingw32 test/migrations/rename/1_we_need_things.rb