summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-06 20:11:30 -0400
committerDavid Gay <david@davidgay.org>2021-04-06 20:11:30 -0400
commit84db8024dfe821efefadf77f91922f0944833a40 (patch)
treeb91ba0785f26131eac63512484df664f6f44407a /db/migrate
parentbf4912554058164fabd410b3082b6aa53e7ed026 (diff)
PTU action types
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