Skip to content

Instantly share code, notes, and snippets.

View tiagovizoto's full-sized avatar
🎯
Focusing

Tiago Vizoto tiagovizoto

🎯
Focusing
  • Curitiba-PR, Brazil
View GitHub Profile
class CreateFuncionarios < ActiveRecord::Migration
def change
create_table :funcionarios, id: false do |t|
t.string :Login, :limit => 30, primary_key: true
t.integer :Matricula
t.string :Nome
t.date :DataAdmissao
t.date :DataDemissao
t.string :Email
t.string :CPF, :limit => 20