Sha256: 675e73621d7cb5f1fd2bde46211fb706ea905ee1eae711c8035add1972ee313f

Contents?: true

Size: 254 Bytes

Versions: 3

Compression:

Stored size: 254 Bytes

Contents

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

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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
calculated_attributes-0.0.17 spec/support/schema.rb
calculated_attributes-0.0.16 spec/support/schema.rb
calculated_attributes-0.0.15 spec/support/schema.rb