aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
authorfrancis <francis>2007-08-01 16:41:32 +0000
committerfrancis <francis>2007-08-01 16:41:32 +0000
commit9bd8bc16d6dcc78b2dade214f28f7251a1a11f9b (patch)
treebe3eede16fcb68730a0c475303435267abc833e2 /db/schema.rb
parentf1689d3521d1fdee901d375d67e7168eaa3ca38a (diff)
User table, and some dodgy authentication code.
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb14
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