class CreateProjects < ActiveRecord::Migration[5.0] def change create_table :decidim_budgets_projects do |t| t.jsonb :title t.jsonb :description t.jsonb :short_description t.integer :budget, null: false t.references :decidim_feature, index: true t.references :decidim_scope, index: true t.references :decidim_category, index: true t.timestamps end end end