test/dummy/db/schema.rb in slugs-4.0.0.0 vs test/dummy/db/schema.rb in slugs-4.0.0.1
- old
+ new
@@ -9,18 +9,23 @@
# 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: 20161124162802) do
+ActiveRecord::Schema.define(version: 20161208062832) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "categories", force: :cascade do |t|
t.string "name"
t.integer "shop_id"
t.string "slug"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "domains", force: :cascade do |t|
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "products", force: :cascade do |t|