Sha256: 8ee1ffdd8932c341513dd30399f05b9fdadcb13ec3695230c1b9c20daeb8bb3e
Contents?: true
Size: 722 Bytes
Versions: 3
Compression:
Stored size: 722 Bytes
Contents
Sequel.migration do change do create_table :reg_1900 do column :id, :Bignum, primary_key: true column :id_pai, :Bignum, index: true, null: false column :cnpj, String, size: 14 column :cod_mod, String, size: 2 column :ser, String, size: 4 column :sub_ser, String, size: 20 column :cod_sit, String, size: 2 column :vl_tot_rec, BigDecimal, size: [18, 2] column :quant_doc, Integer column :cst_pis, String, size: 2 column :cst_cofins, String, size: 2 column :cfop, String, size: 4 column :info_compl, String column :cod_cta, String, size: 255 column :cnpj_pai, String, size: 14, index: true end end end
Version data entries
3 entries across 1 versions & 1 rubygems