Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
EGiataganas committed Feb 26, 2025
1 parent 7907a5d commit 2754804
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

class AddDeterminationPeriodDaysToLocalAuthorityApplicationType < ActiveRecord::Migration[7.2]
def change
add_column :local_authority_application_types, :determination_period_days, :integer
end
end
3 changes: 2 additions & 1 deletion 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[7.2].define(version: 2025_02_24_104514) do
ActiveRecord::Schema[7.2].define(version: 2025_02_24_131628) do
# These are extensions that must be enabled in order to support this database
enable_extension "btree_gin"
enable_extension "plpgsql"
Expand Down Expand Up @@ -518,6 +518,7 @@
t.bigint "application_type_id", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "determination_period_days"
t.index ["application_type_id"], name: "ix_local_authority_application_types_on_application_type_id"
t.index ["local_authority_id", "application_type_id"], name: "index_local_authority_application_types", unique: true
t.index ["local_authority_id"], name: "ix_local_authority_application_types_on_local_authority_id"
Expand Down

0 comments on commit 2754804

Please sign in to comment.