summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20210407000858_create_ptu_action_types.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20210407000858_create_ptu_action_types.rb b/db/migrate/20210407000858_create_ptu_action_types.rb
new file mode 100644
index 0000000..fc33972
--- /dev/null
+++ b/db/migrate/20210407000858_create_ptu_action_types.rb
@@ -0,0 +1,9 @@
+class CreatePtuActionTypes < ActiveRecord::Migration[6.1]
+ def change
+ create_table :ptu_action_types do |t|
+ t.string :name
+
+ t.timestamps
+ end
+ end
+end