Sha256: 69682bbe68fa9e8779e6351d0e1e0d176fb83804d68d2488650413b0f985ca99

Contents?: true

Size: 731 Bytes

Versions: 6

Compression:

Stored size: 731 Bytes

Contents

ActiveRecord::Schema.define do
  create_table :people, :force => true do |t|
    t.column :first_name, :string
    t.column :last_name, :string
  end
  
  create_table :places, :force => true do |t|
    t.column :name, :string
    t.column :location, :string 
  end
  
  create_table :things, :force => true do |t|
    t.column :name, :string
    t.column :description, :string
  end
  
  create_table :side_effecty_things, :force => true do |t|
  end

  create_table :models, :force => true do |t|
    t.column :name, :string
    t.column :description, :string
  end
  
  create_table :notes, :force => true do |t|
    t.column :content, :string
    t.column :created_at, :datetime
    t.column :updated_at, :datetime
  end
end
  

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
radiant-0.6.5.1 vendor/plugins/scenarios/testing/schema.rb
radiant-0.6.5 vendor/plugins/scenarios/testing/schema.rb
radiant-0.6.6 vendor/plugins/scenarios/testing/schema.rb
radiant-0.6.7 vendor/plugins/scenarios/testing/schema.rb
radiant-0.6.9 vendor/plugins/scenarios/testing/schema.rb
radiant-0.6.8 vendor/plugins/scenarios/testing/schema.rb