Sha256: 3e68519474aef1d417d96131cb820abcb8701b271cc82ad19563bbb2b21c3195
Contents?: true
Size: 637 Bytes
Versions: 3
Compression:
Stored size: 637 Bytes
Contents
ActiveRecord::Schema.define(:version => 20081126181722) 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 t.column :created_on, :date t.column :updated_on, :date 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
radiant-0.7.2 | vendor/plugins/dataset/spec/schema.rb |
radiant-0.7.0 | vendor/plugins/dataset/spec/schema.rb |
radiant-0.7.1 | vendor/plugins/dataset/spec/schema.rb |