aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
authorrhenium <re4k@re4k.info>2013-05-11 15:12:20 +0900
committerrhenium <re4k@re4k.info>2013-05-11 15:12:20 +0900
commitaa715210c274c38dba2b95da7b5d321656428e26 (patch)
treec17551b53fbfff09be8fc6f952db78653522ec19 /db/schema.rb
parent387a88f7dc063b91343b717c7582852ebe8029f9 (diff)
downloadaclog-aa715210c274c38dba2b95da7b5d321656428e26.tar.gz
change Account.consumer_version to be not nullable
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 35c1268..49247ed 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20130413042256) do
+ActiveRecord::Schema.define(version: 20130511060935) do
create_table "accounts", force: true do |t|
t.integer "user_id", limit: 8, null: false
@@ -19,7 +19,7 @@ ActiveRecord::Schema.define(version: 20130413042256) do
t.string "oauth_token_secret", null: false
t.datetime "created_at"
t.datetime "updated_at"
- t.integer "consumer_version"
+ t.integer "consumer_version", null: false
end
add_index "accounts", ["user_id"], name: "index_accounts_on_user_id", unique: true, using: :btree