Files
docuseal/db/migrate/20230515182743_create_accounts.rb
T
Alex Turchyn 97c462ead2 initial commit
2023-06-01 00:00:58 +03:00

12 lines
202 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.timestamps
end
end
end