Some checks failed
Run unit tests / rubocop (pull_request) Failing after 2m38s
Run unit tests / check-licenses (pull_request) Successful in 3m1s
Run unit tests / copyright_notice (pull_request) Successful in 1m55s
Run unit tests / unit_tests (pull_request) Successful in 5m25s
Run unit tests / build-static-assets (pull_request) Has been skipped
11 lines
232 B
Ruby
11 lines
232 B
Ruby
class CreateWebsites < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :websites do |t|
|
|
t.text :content
|
|
t.references :wedding, null: false, foreign_key: true, type: :uuid
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|