Sha256: 9c3ac57e36ba170dc78bb80a099ce75755be0509a9babb098c0ea83e0dfd26d1
Contents?: true
Size: 392 Bytes
Versions: 80
Compression:
Stored size: 392 Bytes
Contents
class CreateEnderecos < ActiveRecord::Migration def change create_table :enderecos do |t| t.string :cep t.string :logradouro t.string :complemento t.string :numero t.string :bairro t.references :cidade, index: true, foreign_key: true t.references :usuario, index: true, foreign_key: true t.timestamps null: false end end end
Version data entries
80 entries across 80 versions & 1 rubygems