mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-13 14:02:23 +00:00
15 lines
349 B
Ruby
15 lines
349 B
Ruby
# 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
|