unpack brazilian-rails
This commit is contained in:
BIN
vendor/gems/brazilian-rails/brcpfcnpj/spec/db/.create_testing_structure.rb.swp
vendored
Normal file
BIN
vendor/gems/brazilian-rails/brcpfcnpj/spec/db/.create_testing_structure.rb.swp
vendored
Normal file
Binary file not shown.
29
vendor/gems/brazilian-rails/brcpfcnpj/spec/db/create_testing_structure.rb
vendored
Normal file
29
vendor/gems/brazilian-rails/brcpfcnpj/spec/db/create_testing_structure.rb
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# -*- encoding : utf-8 -*-
|
||||
class CreateTestingStructure < ActiveRecord::Migration
|
||||
def self.up
|
||||
create_table :empresas do |t|
|
||||
t.string :nome
|
||||
t.string :cnpj
|
||||
end
|
||||
create_table :pessoas do |t|
|
||||
t.string :nome
|
||||
t.string :cpf
|
||||
end
|
||||
create_table :companies do |t|
|
||||
t.string :nome
|
||||
t.string :cnpj
|
||||
end
|
||||
create_table :people do |t|
|
||||
t.string :nome
|
||||
t.string :cpf
|
||||
end
|
||||
end
|
||||
|
||||
def self.down
|
||||
drop_table :pessoas
|
||||
drop_table :empresas
|
||||
drop_table :companies
|
||||
drop_table :people
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user