test/dummy/db/schema.rb in templus_models-1.3.7 vs test/dummy/db/schema.rb in templus_models-1.3.8
- old
+ new
@@ -9,21 +9,31 @@
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20150422191007) do
+ActiveRecord::Schema.define(version: 20150813200710) do
create_table "cidades", force: :cascade do |t|
t.string "nome"
t.integer "estado_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
add_index "cidades", ["estado_id"], name: "index_cidades_on_estado_id"
+ create_table "contatos", force: :cascade do |t|
+ t.string "nome"
+ t.string "email"
+ t.integer "usuario_id"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ add_index "contatos", ["usuario_id"], name: "index_contatos_on_usuario_id"
+
create_table "enderecos", force: :cascade do |t|
t.string "cep"
t.string "logradouro"
t.string "complemento"
t.string "numero"
@@ -65,21 +75,30 @@
t.datetime "updated_at"
end
add_index "permissoes", ["papel_id"], name: "index_permissoes_on_papel_id"
+ create_table "telefones", force: :cascade do |t|
+ t.string "numero"
+ t.integer "contato_id"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ add_index "telefones", ["contato_id"], name: "index_telefones_on_contato_id"
+
create_table "teste1s", force: :cascade do |t|
t.string "descricao"
t.integer "teste_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
add_index "teste1s", ["teste_id"], name: "index_teste1s_on_teste_id"
create_table "testes", force: :cascade do |t|
- t.string "nome", limit: 255
+ t.string "nome"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "usuarios", force: :cascade do |t|
@@ -95,12 +114,14 @@
t.string "last_sign_in_ip"
t.integer "failed_attempts", default: 0, null: false
t.datetime "locked_at"
t.integer "papel_id"
t.boolean "root", default: false
+ t.integer "referencia_id"
t.string "nome"
t.datetime "created_at"
t.datetime "updated_at"
+ t.integer "novo_papel_id"
end
add_index "usuarios", ["email"], name: "index_usuarios_on_email", unique: true
add_index "usuarios", ["papel_id"], name: "index_usuarios_on_papel_id"
add_index "usuarios", ["reset_password_token"], name: "index_usuarios_on_reset_password_token", unique: true