Skip to content
Snippets Groups Projects
Commit 692f093e authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Create db for Account

parent 6afe5db4
No related branches found
No related tags found
No related merge requests found
class CreateAccounts < ActiveRecord::Migration
def self.up
create_table :accounts do |t|
# t.column :name, :string
create_table (:accounts,
:options => 'ENGINE=InnoDB DEFAULT CHARSET=utf8') do |t|
t.column :name, :string
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment