migration
This commit is contained in:
parent
3ea718a3f5
commit
7f37be71bd
2 changed files with 9 additions and 3 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddIsTemplateToProcedures < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :procedures, :is_template, :boolean, default: false, null: false
|
||||
end
|
||||
end
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[7.0].define(version: 2024_01_23_085909) do
|
||||
ActiveRecord::Schema[7.0].define(version: 2024_01_26_071130) do
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "pgcrypto"
|
||||
enable_extension "plpgsql"
|
||||
|
@ -867,6 +867,7 @@ ActiveRecord::Schema[7.0].define(version: 2024_01_23_085909) do
|
|||
t.datetime "hidden_at", precision: nil
|
||||
t.datetime "hidden_at_as_template", precision: nil
|
||||
t.boolean "instructeurs_self_management_enabled"
|
||||
t.boolean "is_template", default: false, null: false
|
||||
t.boolean "juridique_required", default: true
|
||||
t.string "libelle"
|
||||
t.string "lien_demarche"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue