Sha256: 9c3159421a6a97053511c99c11e4251ce698ffb4b436a9f1c4f59fc9f74928e4
Contents?: true
Size: 663 Bytes
Versions: 3
Compression:
Stored size: 663 Bytes
Contents
Sequel.migration do change do create_table :reg_1210 do column :id, Integer, primary_key: true column :id_pai, Integer, index: true, null: false column :cnpj, String, size: 14 column :cst_pis, String, size: 2 column :cod_part, String, size: 60 column :dt_oper, Date column :vl_oper, BigDecimal, size: [18, 2] column :vl_bc_pis, BigDecimal, size: [18, 3] column :aliq_pis, BigDecimal, size: [18, 4] column :vl_pis, BigDecimal, size: [18, 2] column :cod_cta, String, size: 60 column :desc_compl, String, size: 1000 column :cnpj_pai, String, size: 14, index: true end end end
Version data entries
3 entries across 3 versions & 1 rubygems