From 0c4ed3e157dc427c2ee81e6846fefe4db46d3c08 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 2 Jan 2023 15:57:48 -0800 Subject: [PATCH] Add XLB (Transcendence) to Summons Thanks, Bahamut --- db/migrate/20230102234217_add_xlb_to_summons.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20230102234217_add_xlb_to_summons.rb diff --git a/db/migrate/20230102234217_add_xlb_to_summons.rb b/db/migrate/20230102234217_add_xlb_to_summons.rb new file mode 100644 index 0000000..3878206 --- /dev/null +++ b/db/migrate/20230102234217_add_xlb_to_summons.rb @@ -0,0 +1,5 @@ +class AddXlbToSummons < ActiveRecord::Migration[6.1] + def change + add_column :summons, :xlb, :boolean, default: false, null: false + end +end