Files
docuseal/db/migrate/20230515182743_create_accounts.rb
T
2023-06-30 01:49:48 +03:00

14 lines
276 B
Ruby

# frozen_string_literal: true
class CreateAccounts < ActiveRecord::Migration[7.0]
def change
create_table :accounts do |t|
t.string :name, null: false
t.string :timezone, null: false
t.string :locale, null: false
t.timestamps
end
end
end