aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240225100002_add_note_to_things.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20240225100002_add_note_to_things.rb')
-rw-r--r--db/migrate/20240225100002_add_note_to_things.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20240225100002_add_note_to_things.rb b/db/migrate/20240225100002_add_note_to_things.rb
new file mode 100644
index 0000000..b0c0f40
--- /dev/null
+++ b/db/migrate/20240225100002_add_note_to_things.rb
@@ -0,0 +1,5 @@
+class AddNoteToThings < ActiveRecord::Migration[7.1]
+ def change
+ add_column :things, :note, :string
+ end
+end