Remove files that don't belong here
This commit is contained in:
parent
5d9bd5c647
commit
b31d9f8b9e
4 changed files with 0 additions and 28 deletions
|
|
@ -1,6 +0,0 @@
|
|||
class AddNicknamesToCharacters < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :characters, :nicknames_en, :string, array: true, default: [], null: false
|
||||
add_column :characters, :nicknames_jp, :string, array: true, default: [], null: false
|
||||
end
|
||||
end
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
class AddNicknamesToSummons < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :summons, :nicknames_en, :string, array: true, default: [], null: false
|
||||
add_column :summons, :nicknames_jp, :string, array: true, default: [], null: false
|
||||
end
|
||||
end
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
class AddNicknamesToWeapons < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :weapons, :nicknames_en, :string, array: true, default: [], null: false
|
||||
add_column :weapons, :nicknames_jp, :string, array: true, default: [], null: false
|
||||
end
|
||||
end
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
class AddFullAutoTogglesToGridCharacter < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
change_table(:grid_characters) do |t|
|
||||
t.boolean :skill0_enabled, null: false, default: true
|
||||
t.boolean :skill1_enabled, null: false, default: true
|
||||
t.boolean :skill2_enabled, null: false, default: true
|
||||
t.boolean :skill3_enabled, null: false, default: true
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Reference in a new issue