From 44facc2e567eb3c045ce082428f42276e45b0202 Mon Sep 17 00:00:00 2001 From: David Gay Date: Sat, 22 May 2021 18:10:19 -0400 Subject: Monsters and basic combat --- db/migrate/20210522194937_add_wounds_to_characters.rb | 5 +++++ db/migrate/20210522201259_create_monsters.rb | 12 ++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 db/migrate/20210522194937_add_wounds_to_characters.rb create mode 100644 db/migrate/20210522201259_create_monsters.rb (limited to 'db/migrate') 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 diff --git a/db/migrate/20210522201259_create_monsters.rb b/db/migrate/20210522201259_create_monsters.rb new file mode 100644 index 0000000..39f0a1a --- /dev/null +++ b/db/migrate/20210522201259_create_monsters.rb @@ -0,0 +1,12 @@ +class CreateMonsters < ActiveRecord::Migration[6.1] + def change + create_table :monsters do |t| + t.string :gid + t.string :name + t.text :description + t.jsonb :whatnot + + t.timestamps + end + end +end -- cgit v1.2.3