This repository was archived by the owner on Apr 24, 2021. It is now read-only.
Commit 122e0ba
committed
Simplify "basic installation" notes
Use the Rails-provided rake task for creating the dev database.
Change database-schema loading instructions, which is more future-proof. Running migrations on the latest build resulted in this schema.rb difference:
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: ../db/schema.rb
no changes added to commit (use "git add" and/or "git commit -a")
$ cd ..
$ git diff
diff --git a/db/schema.rb b/db/schema.rb
index 6c263e3..904a869 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -95,7 +95,6 @@ ActiveRecord::Schema.define(:version => 20131101180159) do
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "handle"
- t.boolean "anonymous", :default => false
t.boolean "guest", :default => false
t.datetime "processing_timestamp"
t.string "access_token"1 parent 60517c6 commit 122e0ba
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
36 | | - | |
| 35 | + | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
0 commit comments