Files
old-zsterminator/db/migrate/20240810054948_create_teams.rb

9 lines
131 B
Ruby
Raw Normal View History

2024-08-11 14:18:36 +02:00
class CreateTeams < ActiveRecord::Migration[7.1]
def change
create_table :teams do |t|
t.timestamps
end
end
end