Sha256: 3eebfa77fcba44547371d84e2c47f07e4d72f648b8684e440934469bb8215983

Contents?: true

Size: 255 Bytes

Versions: 7

Compression:

Stored size: 255 Bytes

Contents

ActiveRecord::Schema.define(:version => 0) do
  puts "Creating Schema"
  create_table :customers, :force => true do |t|
    t.string :name
  end
  create_table :phone_numbers, :force => true do |t|
    t.string :number
    t.integer :customer_id
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ar-simple-idmap-0.1.6 spec/db/schema.rb
ar-simple-idmap-0.1.5 spec/db/schema.rb
ar-simple-idmap-0.1.4 spec/db/schema.rb
ar-simple-idmap-0.1.3 spec/db/schema.rb
ar-simple-idmap-0.1.2 spec/db/schema.rb
ar-simple-idmap-0.1.1 spec/db/schema.rb
ar-simple-idmap-0.1.0 spec/db/schema.rb