Import dotnetDBF for error handling.

This commit is contained in:
Patrick Fic
2022-02-11 15:06:05 -08:00
parent 991ad38839
commit f32c149bae
75 changed files with 5585 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
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