Sha256: 34b2e2eb7286855cbcd7a9b1a43ae12d6455518414d65146f8d097f9dd79fc3a

Contents?: true

Size: 544 Bytes

Versions: 1

Compression:

Stored size: 544 Bytes

Contents

class CreateProfissionais < ActiveRecord::Migration
  def change
    create_table :profissionais do |t|
      t.string :registro
      t.string :email
      t.string :nome
      t.integer :sexo
      t.string :cpf
      t.string :telefone
      t.string :celular
      t.string :endereco
      t.string :cep
      t.string :cidade
      t.string :estado
      t.string :complemento
      t.string :numero
      t.integer :tipo_profissional_id
      t.integer :especialidade_id
      t.integer :formacao_id

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
omniauth-sabia-1.0.1 db/migrate/20120604181253_create_profissionais.rb