Add terms of service (#33055)
This commit is contained in:
parent
7a2a345c08
commit
30aa0df88c
129 changed files with 1456 additions and 238 deletions
14
db/migrate/20241123224956_create_terms_of_services.rb
Normal file
14
db/migrate/20241123224956_create_terms_of_services.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class CreateTermsOfServices < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
create_table :terms_of_services do |t|
|
||||
t.text :text, null: false, default: ''
|
||||
t.text :changelog, null: false, default: ''
|
||||
t.datetime :published_at
|
||||
t.datetime :notification_sent_at
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue