11 lines
188 B
Ruby
11 lines
188 B
Ruby
class CreateAccounts < ActiveRecord::Migration[5.1]
|
|
def change
|
|
create_table :accounts do |t|
|
|
t.string :title
|
|
t.string :account_type
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|