summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb14
1 files changed, 13 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 8dd6dcc..bddf880 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2021_05_03_215828) do
+ActiveRecord::Schema.define(version: 2021_05_03_221405) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -22,7 +22,9 @@ ActiveRecord::Schema.define(version: 2021_05_03_215828) do
t.jsonb "whatnot"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
+ t.bigint "location_id"
t.index ["gid"], name: "index_activities_on_gid"
+ t.index ["location_id"], name: "index_activities_on_location_id"
end
create_table "character_items", force: :cascade do |t|
@@ -59,6 +61,16 @@ ActiveRecord::Schema.define(version: 2021_05_03_215828) do
t.index ["gid"], name: "index_items_on_gid"
end
+ create_table "locations", force: :cascade do |t|
+ t.string "gid"
+ t.string "name"
+ t.text "description"
+ t.jsonb "whatnot"
+ t.datetime "created_at", precision: 6, null: false
+ t.datetime "updated_at", precision: 6, null: false
+ t.index ["gid"], name: "index_locations_on_gid"
+ end
+
create_table "skills", force: :cascade do |t|
t.string "gid"
t.string "name"