Sha256: 248bc8d165c3c97906a1e53c5e86e9e7727a0d06db45b3da4f11bc9284aa4f65

Contents?: true

Size: 278 Bytes

Versions: 7

Compression:

Stored size: 278 Bytes

Contents

ActiveRecord::Schema.define do
  self.verbose = false

  create_table :posts, force: true do |t|
    t.string :text
    t.timestamps null: false
  end

  create_table :comments, force: true do |t|
    t.integer :post_id
    t.string :text
    t.timestamps null: false
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
calculated_attributes-0.1.1 spec/support/schema.rb
calculated_attributes-0.1.0 spec/support/schema.rb
calculated_attributes-0.0.22 spec/support/schema.rb
calculated_attributes-0.0.21 spec/support/schema.rb
calculated_attributes-0.0.20 spec/support/schema.rb
calculated_attributes-0.0.19 spec/support/schema.rb
calculated_attributes-0.0.18 spec/support/schema.rb