spec/dummy/db/schema.rb in bigbroda-0.0.1 vs spec/dummy/db/schema.rb in bigbroda-0.0.2
- old
+ new
@@ -12,28 +12,28 @@
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140227015551) do
create_table "log_data", force: true do |t|
- t.string "name"
- t.string "description"
- t.datetime "created_at"
- t.datetime "updated_at"
+ t.string "name"
+ t.string "description"
+ t.timestamp "created_at"
+ t.timestamp "updated_at"
end
create_table "posts", force: true do |t|
- t.string "title"
- t.integer "user_id"
- t.datetime "created_at"
- t.datetime "updated_at"
+ t.string "title"
+ t.string "user_id"
+ t.timestamp "created_at"
+ t.timestamp "updated_at"
end
create_table "users", force: true do |t|
- t.string "name"
- t.boolean "admin"
- t.integer "phone"
- t.datetime "created_at"
- t.datetime "updated_at"
- t.string "last_name"
+ t.string "name"
+ t.boolean "admin"
+ t.integer "phone"
+ t.timestamp "created_at"
+ t.timestamp "updated_at"
+ t.string "last_name"
end
end