Sha256: d7976869f87c84d3ffbd9b464ce6c279102725b4d8dea35495a22fd34f6ad56f

Contents?: true

Size: 553 Bytes

Versions: 1

Compression:

Stored size: 553 Bytes

Contents

# ------------------------------------------------------
# Defined the migrations
# ------------------------------------------------------
ActiveRecord::Schema.define(:version => 0) do

  create_table :with_string_authors, :force => true do |t|
    t.string :name
    t.authors
  end

  create_table :with_integer_authors, :force => true do |t|
    t.string :name
    t.authors(:integer)
  end
  
  create_table :blank_ones, :force => true do |t|
    t.string :name
  end

  create_table :blank_twos, :force => true do |t|
    t.string :name
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ar-audit-tracer-1.0.2 test/resources/schema.rb