Sha256: ea996e30945c4f8bc6317559e8702b342847fbc1938a31726bdd342bd0b09d73
Contents?: true
Size: 1.7 KB
Versions: 1
Compression:
Stored size: 1.7 KB
Contents
# frozen_string_literal: true class ChangeColorFieldsOnProposalsStates < ActiveRecord::Migration[6.1] class ProposalState < ApplicationRecord self.table_name = :decidim_proposals_proposal_states def self.colors { gray: { background: "#F6F8FA", foreground: "#4B5058" }, green: { background: "#E3FCE9", foreground: "#15602C" }, orange: { background: "#FFF1E5", foreground: "#BC4C00" }, red: { background: "#FFEBE9", foreground: "#D1242F" } } end end def up colors = ProposalState.colors add_column :decidim_proposals_proposal_states, :bg_color, :string, default: colors[:gray][:background], null: false add_column :decidim_proposals_proposal_states, :text_color, :string, default: colors[:gray][:foreground], null: false remove_column :decidim_proposals_proposal_states, :css_class # rubocop:disable Rails/SkipsModelValidations ProposalState.where(token: :accepted).update_all( bg_color: colors[:green][:background], text_color: colors[:green][:foreground] ) ProposalState.where(token: :evaluating).update_all( bg_color: colors[:orange][:background], text_color: colors[:orange][:foreground] ) ProposalState.where(token: :rejected).update_all( bg_color: colors[:red][:background], text_color: colors[:red][:foreground] ) # rubocop:enable Rails/SkipsModelValidations end def down remove_column :decidim_proposals_proposal_states, :bg_color remove_column :decidim_proposals_proposal_states, :text_color add_column :decidim_proposals_proposal_states, :css_class, :string end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
decidim-proposals-0.29.0.rc1 | db/migrate/20240209092404_change_color_fields_on_proposals_states.rb |