Skip to content

Commit

Permalink
bin/rails db:migrate
Browse files Browse the repository at this point in the history
  • Loading branch information
takahashim committed Jul 29, 2024
1 parent a25ea71 commit d989037
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2024_07_13_180919) do
ActiveRecord::Schema.define(version: 2024_07_29_104240) do

# These are extensions that must be enabled in order to support this database
enable_extension "ltree"
Expand Down Expand Up @@ -454,6 +454,8 @@
t.string "decidim_participatory_space_type"
t.integer "decidim_participatory_space_id"
t.datetime "deleted_at"
t.integer "up_votes_count", default: 0, null: false
t.integer "down_votes_count", default: 0, null: false
t.index ["created_at"], name: "index_decidim_comments_comments_on_created_at"
t.index ["decidim_author_id", "decidim_author_type"], name: "index_decidim_comments_comments_on_decidim_author"
t.index ["decidim_author_id"], name: "decidim_comments_comment_author"
Expand Down Expand Up @@ -556,7 +558,7 @@
t.bigint "resource_id"
t.string "decidim_author_type"
t.bigint "decidim_author_id"
t.integer "decidim_user_group_id"
t.integer "decidim_user_group_id", default: 0
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["decidim_author_type", "decidim_author_id"], name: "idx_endorsements_authors"
Expand Down Expand Up @@ -1279,6 +1281,7 @@
t.jsonb "body"
t.integer "comments_count", default: 0, null: false
t.integer "follows_count", default: 0, null: false
t.integer "valuation_assignments_count", default: 0
t.index "md5((body)::text)", name: "decidim_proposals_proposal_body_search"
t.index "md5((title)::text)", name: "decidim_proposals_proposal_title_search"
t.index ["created_at"], name: "index_decidim_proposals_proposals_on_created_at"
Expand Down

0 comments on commit d989037

Please sign in to comment.