test/dummy/db/schema.rb in tuning-0.3.3 vs test/dummy/db/schema.rb in tuning-1.0.0
- old
+ new
@@ -9,8 +9,22 @@
# 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: 0) do
+ActiveRecord::Schema.define(version: 20161022144717) do
+
+ # These are extensions that must be enabled in order to support this database
+ enable_extension "plpgsql"
+
+ create_table "records", force: :cascade do |t|
+ end
+
+ create_table "shops", force: :cascade do |t|
+ t.boolean "enabled"
+ t.boolean "visible"
+ t.string "name"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
end