10 lines
167 B
Ruby
10 lines
167 B
Ruby
class CreateWeddings < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :weddings, id: :uuid do |t|
|
|
t.date :date
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|