summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-02 20:21:04 -0400
committerDavid Gay <david@davidgay.org>2021-05-02 20:21:04 -0400
commit2b32a88a8e9f1d0bb5055843ac987d9cb9981803 (patch)
tree19bf361b7cbb69ae493cc02d07f0fae2cf6da928 /db/schema.rb
parent5fe4e8f4a080e02dfc4e4adabd09d6f5c7e38f40 (diff)
Add Activities
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 67fd0f5..85aa952 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -10,11 +10,20 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2021_05_02_212517) do
+ActiveRecord::Schema.define(version: 2021_05_03_001859) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
+ create_table "activities", 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
+ end
+
create_table "items", force: :cascade do |t|
t.string "gid"
t.string "name"