1
0
mirror of https://github.com/mastodon/mastodon synced 2025-01-10 03:43:01 +09:00
mastodon/db/migrate/20241123224956_create_terms_of_services.rb

15 lines
349 B
Ruby
Raw Normal View History

2024-12-09 19:04:46 +09:00
# 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