mirror of
https://github.com/we-promise/sure.git
synced 2026-04-18 19:44:09 +00:00
10 lines
169 B
Ruby
10 lines
169 B
Ruby
class CreateFamilies < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :families, id: :uuid do |t|
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|