Sha256: a7b4361a89f85448edee02fee45402cb1aa3d57dd65653dddabea4d4a2fee4ba

Contents?: true

Size: 248 Bytes

Versions: 13

Compression:

Stored size: 248 Bytes

Contents

class CreateThings < ActiveRecord::Migration
  def self.up
    create_table :things, :id => false do |t|
      t.string :name

      t.timestamps
    end
  end

  def self.down
    drop_table :things
  end
end

class Thing < ActiveRecord::Base
end

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
cmoran92-activerecord-jdbc-adapter-1.2.1.2 test/models/thing.rb
activerecord-jdbc-adapter-1.2.5 test/models/thing.rb
tgbyte-activerecord-jdbc-adapter-1.2.2.5 test/models/thing.rb
tgbyte-activerecord-jdbc-adapter-1.2.2.4 test/models/thing.rb
tgbyte-activerecord-jdbc-adapter-1.2.2.3 test/models/thing.rb
tgbyte-activerecord-jdbc-adapter-1.2.2.2 test/models/thing.rb
activerecord-jdbc-adapter-1.2.2.1 test/models/thing.rb
activerecord-jdbc-adapter-onsite-1.2.2 test/models/thing.rb
cmoran92-activerecord-jdbc-adapter-1.2.1.1 test/models/thing.rb
activerecord-jdbc-adapter-1.2.2 test/models/thing.rb
cmoran92-activerecord-jdbc-adapter-1.2.1 test/models/thing.rb
activerecord-jdbc-adapter-1.2.1 test/models/thing.rb
activerecord-jdbc-adapter-1.2.0 test/models/thing.rb