Add XLB date column for summons

This commit is contained in:
Justin Edmund 2023-08-19 22:59:06 -07:00
parent 9366774a9c
commit f21ca5e659
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddXlbDateToSummons < ActiveRecord::Migration[7.0]
def change
add_column :summons, :xlb_date, :date
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2023_08_16_015904) do
ActiveRecord::Schema[7.0].define(version: 2023_08_20_045019) do
# These are extensions that must be enabled in order to support this database
enable_extension "btree_gin"
enable_extension "pg_trgm"
@ -449,6 +449,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_08_16_015904) do
t.string "wiki_ja", default: ""
t.string "gamewith", default: ""
t.string "kamigame", default: ""
t.date "xlb_date"
t.index ["name_en"], name: "index_summons_on_name_en", opclass: :gin_trgm_ops, using: :gin
end