1
0
mirror of https://github.com/mastodon/mastodon synced 2025-01-09 19:33:04 +09:00
mastodon/db/migrate/20241123224956_create_terms_of_services.rb
2024-12-09 10:04:46 +00:00

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