Sha256: d28127d7551bd6a49e065707136c1498da428194ed36738d33014d8eec77edbb

Contents?: true

Size: 738 Bytes

Versions: 2

Compression:

Stored size: 738 Bytes

Contents

ActiveRecord::Schema.define(:version => 1) do
  create_table :people, :force => true do |t|
    t.column :first_name, :string
    t.column :last_name, :string
    t.column :date_of_birth, :date
    t.column :amount, :decimal, :precision => 10, :scale => 2
  end

  create_table :articles, :force => true do |t|
    t.column :title, :string
    t.column :content, :string
  end

  create_table :reports, :force => true do |t|
    t.string :name
    t.string :description
    t.string :code
    t.string :used_columns
    t.string :includes
    t.string :sorts
    t.string :filters
  end
  create_table :temp_reports, :force => true do |t|
    t.column :name, :string
    t.column :query, :text
    t.column :language, :string
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
report_ui-0.0.1.alpha fixture_rails_root/db/schema.rb
granular_permissions-0.0.0 fixture_rails_root/db/schema.rb