Sha256: de602144de084c3f28b1d161d55a365070f603ae284f04e0303dbf6e83654721

Contents?: true

Size: 709 Bytes

Versions: 27

Compression:

Stored size: 709 Bytes

Contents

ActiveRecord::Schema.define(:version => 0) do
  
  create_table :people, :force => true do |t|
    t.string :firstname
    t.string :lastname
    t.string :email
    t.timestamps
  end
  
  create_table :projects, :force => true do |t|
    t.string  :name
    t.integer :person_id
    t.timestamps
  end
  
  create_table :tasks, :force => true do |t|
    t.integer :project_id
    t.integer :person_id
    t.string  :name
    t.text    :description
    t.boolean :done
    t.timestamps
  end
  
  create_table :saved_queries, :force => true  do |t|
    t.column :name,      :string
    t.column :grid_name, :string
    t.column :query,     :text
    t.column :grid_hash, :string

    t.timestamps
  end  
end

Version data entries

27 entries across 27 versions & 4 rubygems

Version Path
wice_grid_mongo-6.2.4 test/schema.rb
wice_grid-3.0.4 test/schema.rb
wice_grid-3.0.3 test/schema.rb
wice_grid-3.0.2 test/schema.rb
wice_grid-3.0.1 test/schema.rb
wice_grid-3.0.0 test/schema.rb
wice_grid_mongoid-6.2.3 test/schema.rb
wice_grid_mongoid-6.2.2 test/schema.rb
wice_grid_mongoid-6.2.1 test/schema.rb
wice_grid_mongoid-6.2.0 test/schema.rb
wice_grid_mongoid-6.1.1 test/schema.rb
wice_grid_mongoid-6.1.0 test/schema.rb
wice_grid-3.0.0.pre4 test/schema.rb
wice_grid-3.0.0.pre3 test/schema.rb
wice_grid_mongoid-6.0.10 test/schema.rb
wice_grid_mongoid-6.0.9 test/schema.rb
wice_grid-3.0.0.pre2 test/schema.rb
wice_grid-3.0.0.pre1 test/schema.rb
wice_grid_mongoid-6.0.8 test/schema.rb
wice_grid_mongoid-6.0.7 test/schema.rb