Sha256: 04bb1c20e88f6556389f2e682711e08f450846bc246ba65fec6a190dca117915

Contents?: true

Size: 561 Bytes

Versions: 2

Compression:

Stored size: 561 Bytes

Contents

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

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

  create_table :with_integer_authors, :force => true do |t|
    t.string :name
    t.authorstamps(: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

2 entries across 2 versions & 1 rubygems

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