summaryrefslogtreecommitdiff
path: root/db/migrate/20210522194937_add_wounds_to_characters.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210522194937_add_wounds_to_characters.rb')
-rw-r--r--db/migrate/20210522194937_add_wounds_to_characters.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20210522194937_add_wounds_to_characters.rb b/db/migrate/20210522194937_add_wounds_to_characters.rb
new file mode 100644
index 0000000..be56e29
--- /dev/null
+++ b/db/migrate/20210522194937_add_wounds_to_characters.rb
@@ -0,0 +1,5 @@
+class AddWoundsToCharacters < ActiveRecord::Migration[6.1]
+ def change
+ add_column :characters, :wounds, :integer
+ end
+end