public
Description: OBSOLETE! PLEASE SEE http://github.com/radiant/radiant
Homepage: http://www.radiantcms.org/
Clone URL: git://github.com/seancribbs/radiant.git
Search Repo:
Accents: Add schema, remove ignored files.


git-svn-id: http://svn.radiantcms.org/radiant/trunk@793 
6226cccd-6db4-da11-80d6-0014220fd306
seancribbs (author)
Fri Apr 04 12:31:21 -0700 2008
commit  a969b5b1f50f6f54f93887b21ed1e0f9eaf9f03f
tree    d59f09fb4d18c250e2ccf9da1cc324bea8cf983b
parent  f1fc178907f873bd4178d043805e916e426e92b8
...
1
...
 
0
@@ -1,2 +1 @@
0
-SQLite format 3@  Ö²2à‚GGƒ tableopen_id_authentication_noncesopen_id_authentication_noncesCREATE TABLE open_id_authentication_nonces ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "timestamp" integer NOT NULL, "server_url" varchar(255) DEFAULT NULL, "salt" varchar(255) NOT NULL)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)‚}SS„atableopen_id_authentication_associationsopen_id_authentication_associationsCREATE TABLE open_id_authentication_associations ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issued" integer DEFAULT NULL, "lifetime" integer DEFAULT NULL, "handle" varchar(255) DEFAULT NULL, "assoc_type" varchar(255) DEFAULT NULL, "server_url" blob DEFAULT NULL, "secret" blob DEFAULT NULL)L##atableschema_infoschema_infoCREATE TABLE schema_info (version integer) û   
...
9
10
11
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
14
15
...
9
10
11
 
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
0
@@ -9,7 +9,23 @@
0
 #
0
 # It's strongly recommended to check this file into your version control system.
0
 
0
-ActiveRecord::Schema.define(:version => 1) do
0
+ActiveRecord::Schema.define(:version => 2) do
0
+
0
+ create_table "authors", :force => true do |t|
0
+ t.string "login"
0
+ t.string "email"
0
+ t.string "crypted_password", :limit => 40
0
+ t.string "salt", :limit => 40
0
+ t.string "remember_token"
0
+ t.datetime "remember_token_expires_at"
0
+ t.datetime "created_at"
0
+ t.datetime "updated_at"
0
+ t.string "first_name"
0
+ t.string "last_name"
0
+ t.string "website"
0
+ t.string "identity_url"
0
+ t.text "notes"
0
+ end
0
 
0
   create_table "open_id_authentication_associations", :force => true do |t|
0
     t.integer "issued"
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
@@ -1,19 +1 @@
0
- SQL (0.000232) select sqlite_version(*)
0
- SQL (0.002191) CREATE TABLE schema_info (version integer)
0
- SQL (0.002255) INSERT INTO schema_info (version) VALUES(0)
0
- SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer)
0
- SQL (0.000365) SELECT version FROM schema_info
0
-Migrating to OpenIdAuthenticationTables (1)
0
- SQL (0.000000) SQLite3::SQLException: no such table: open_id_authentication_associations: DROP TABLE open_id_authentication_associations
0
- SQL (0.002356) CREATE TABLE open_id_authentication_associations ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issued" integer DEFAULT NULL, "lifetime" integer DEFAULT NULL, "handle" varchar(255) DEFAULT NULL, "assoc_type" varchar(255) DEFAULT NULL, "server_url" blob DEFAULT NULL, "secret" blob DEFAULT NULL) 
0
- SQL (0.000000) SQLite3::SQLException: no such table: open_id_authentication_nonces: DROP TABLE open_id_authentication_nonces
0
- SQL (0.002088) CREATE TABLE open_id_authentication_nonces ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "timestamp" integer NOT NULL, "server_url" varchar(255) DEFAULT NULL, "salt" varchar(255) NOT NULL) 
0
- SQL (0.002295) UPDATE schema_info SET version = 1
0
- SQL (0.000346) SELECT * FROM schema_info
0
- SQL (0.000410)  SELECT name
0
- FROM sqlite_master
0
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
0
-
0
- SQL (0.000111) PRAGMA index_list(open_id_authentication_associations)
0
- SQL (0.000087) PRAGMA index_list(open_id_authentication_nonces)

Comments

    No one has commented yet.