diff options
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..32e957c51 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,14 @@ +# This file is autogenerated. Instead of editing this file, please use the +# migrations feature of ActiveRecord to incrementally modify your database, and +# then regenerate this schema definition. + +ActiveRecord::Schema.define(:version => 1) do + + create_table "users", :force => true do |t| + t.column "email", :string + t.column "name", :string + t.column "hashed_password", :string + t.column "salt", :string + end + +end |