Skip to content

Commit

Permalink
Merge branch 'upgrade_0.27' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
ferblape committed Sep 14, 2024
2 parents d81f293 + 939666b commit 0425f19
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# frozen_string_literal: true
# This migration comes from decidim_templates (originally 20200518093819)

class CreateDecidimTemplates < ActiveRecord::Migration[5.2]
def change
create_table :decidim_templates_templates do |t|
t.integer :decidim_organization_id, null: false, index: { name: "index_decidim_templates_organization" }
t.references :templatable, polymorphic: true, index: { name: "index_decidim_templates_templatable" }
t.jsonb :name, null: false
t.jsonb :description
t.timestamps
end
end
end

0 comments on commit 0425f19

Please sign in to comment.