summaryrefslogtreecommitdiff
path: root/db/migrate/20210408001502_create_ptu_natures.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-07 20:44:37 -0400
committerDavid Gay <david@davidgay.org>2021-04-07 20:44:44 -0400
commit5fc450ebd4249efc15e41b1b152a214697f5f415 (patch)
tree127f3452ebc7511eb71f1e490c44aa97f84d0c40 /db/migrate/20210408001502_create_ptu_natures.rb
parentf27be0dce605412440b6317cd568610f01079f32 (diff)
PTU natures
Diffstat (limited to 'db/migrate/20210408001502_create_ptu_natures.rb')
-rw-r--r--db/migrate/20210408001502_create_ptu_natures.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20210408001502_create_ptu_natures.rb b/db/migrate/20210408001502_create_ptu_natures.rb
new file mode 100644
index 0000000..57692fd
--- /dev/null
+++ b/db/migrate/20210408001502_create_ptu_natures.rb
@@ -0,0 +1,11 @@
+class CreatePtuNatures < ActiveRecord::Migration[6.1]
+ def change
+ create_table :ptu_natures do |t|
+ t.string :name
+ t.string :raises
+ t.string :lowers
+
+ t.timestamps
+ end
+ end
+end