Files
parse/db/migrate/20250717162211_create_projects.rb
Stefan Tollkühn 3735122750 initial commit
2025-07-21 12:14:42 +02:00

10 lines
158 B
Ruby

class CreateProjects < ActiveRecord::Migration[8.0]
def change
create_table :projects do |t|
t.string :name
t.timestamps
end
end
end