19 lines
596 B
Plaintext
19 lines
596 B
Plaintext
ActiveRecord::Schema.define do
|
|
create_table "dbase_83" do |t|
|
|
t.column "id", :integer
|
|
t.column "catcount", :integer
|
|
t.column "agrpcount", :integer
|
|
t.column "pgrpcount", :integer
|
|
t.column "order", :integer
|
|
t.column "code", :string, :limit => 50
|
|
t.column "name", :string, :limit => 100
|
|
t.column "thumbnail", :string, :limit => 254
|
|
t.column "image", :string, :limit => 254
|
|
t.column "price", :float
|
|
t.column "cost", :float
|
|
t.column "desc", :text
|
|
t.column "weight", :float
|
|
t.column "taxable", :boolean
|
|
t.column "active", :boolean
|
|
end
|
|
end |