Sha256: e973742ac936a2213e022298abb15dfa8e6248991b33a1476230dc7cf10614b5
Contents?: true
Size: 742 Bytes
Versions: 3
Compression:
Stored size: 742 Bytes
Contents
Sequel.migration do change do create_table :reg_0100 do column :id, :Bignum, primary_key: true column :id_pai, :Bignum, index: true, null: false column :nome, String, size: 100 column :cpf, String, size: 11 column :crc, String, size: 15 column :cnpj, String, size: 14 column :cep, String, size: 8 column :end, String, size: 60 column :num, String, size: 1000 column :compl, String, size: 60 column :bairro, String, size: 60 column :fone, String, size: 11 column :fax, String, size: 11 column :email, String, size: 1000 column :cod_mun, String, size: 7 column :cnpj_pai, String, size: 14, index: true end end end
Version data entries
3 entries across 1 versions & 1 rubygems