diff options
Diffstat (limited to 'db/migrate/20231220194440_create_operations.rb')
-rw-r--r-- | db/migrate/20231220194440_create_operations.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20231220194440_create_operations.rb b/db/migrate/20231220194440_create_operations.rb new file mode 100644 index 0000000..85a2ee3 --- /dev/null +++ b/db/migrate/20231220194440_create_operations.rb @@ -0,0 +1,9 @@ +class CreateOperations < ActiveRecord::Migration[7.1] + def change + create_table :operations do |t| + t.string :name + + t.timestamps + end + end +end |