Skip to content

Commit

Permalink
Schema updated
Browse files Browse the repository at this point in the history
  • Loading branch information
narutosanjiv committed Nov 19, 2015
1 parent 9d7b1c0 commit 3e8d3b9
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion app/assets/javascripts/i18n/translations.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 35 additions & 35 deletions db/schema.rb
Expand Up @@ -13,7 +13,7 @@

ActiveRecord::Schema.define(version: 20150620054216) do

create_table "collaborators", force: true do |t|
create_table "collaborators", force: :cascade do |t|
t.integer "project_id"
t.string "login"
t.datetime "created_at"
Expand All @@ -22,9 +22,9 @@

add_index "collaborators", ["project_id"], name: "index_collaborators_on_project_id"

create_table "deposits", force: true do |t|
create_table "deposits", force: :cascade do |t|
t.integer "project_id"
t.string "txid"
t.string "txid", limit: 255
t.integer "confirmations"
t.datetime "created_at"
t.datetime "updated_at"
Expand All @@ -34,22 +34,22 @@

add_index "deposits", ["project_id"], name: "index_deposits_on_project_id"

create_table "projects", force: true do |t|
t.string "url"
t.string "bitcoin_address"
create_table "projects", force: :cascade do |t|
t.string "url", limit: 255
t.string "bitcoin_address", limit: 255
t.datetime "created_at"
t.datetime "updated_at"
t.string "name"
t.string "full_name"
t.string "source_full_name"
t.string "name", limit: 255
t.string "full_name", limit: 255
t.string "source_full_name", limit: 255
t.text "description"
t.integer "watchers_count"
t.string "language"
t.string "last_commit"
t.string "language", limit: 255
t.string "last_commit", limit: 255
t.integer "available_amount_cache"
t.string "github_id"
t.string "host", default: "github"
t.boolean "hold_tips", default: false
t.string "github_id", limit: 255
t.string "host", default: "github"
t.boolean "hold_tips", default: false
t.datetime "info_updated_at"
t.string "branch"
t.boolean "disable_notifications"
Expand All @@ -60,16 +60,16 @@
add_index "projects", ["full_name"], name: "index_projects_on_full_name", unique: true
add_index "projects", ["github_id"], name: "index_projects_on_github_id", unique: true

create_table "sendmanies", force: true do |t|
t.string "txid"
create_table "sendmanies", force: :cascade do |t|
t.string "txid", limit: 255
t.text "data"
t.string "result"
t.string "result", limit: 255
t.boolean "is_error"
t.datetime "created_at"
t.datetime "updated_at"
end

create_table "tipping_policies_texts", force: true do |t|
create_table "tipping_policies_texts", force: :cascade do |t|
t.integer "project_id"
t.integer "user_id"
t.text "text"
Expand All @@ -80,13 +80,13 @@
add_index "tipping_policies_texts", ["project_id"], name: "index_tipping_policies_texts_on_project_id"
add_index "tipping_policies_texts", ["user_id"], name: "index_tipping_policies_texts_on_user_id"

create_table "tips", force: true do |t|
create_table "tips", force: :cascade do |t|
t.integer "user_id"
t.integer "amount", limit: 8
t.integer "sendmany_id"
t.datetime "created_at"
t.datetime "updated_at"
t.string "commit"
t.string "commit", limit: 255
t.integer "project_id"
t.datetime "refunded_at"
t.text "commit_message"
Expand All @@ -97,34 +97,34 @@
add_index "tips", ["sendmany_id"], name: "index_tips_on_sendmany_id"
add_index "tips", ["user_id"], name: "index_tips_on_user_id"

create_table "users", force: true do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
create_table "users", force: :cascade do |t|
t.string "email", limit: 255, default: "", null: false
t.string "encrypted_password", limit: 255, default: "", null: false
t.string "reset_password_token", limit: 255
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.string "current_sign_in_ip", limit: 255
t.string "last_sign_in_ip", limit: 255
t.datetime "created_at"
t.datetime "updated_at"
t.string "nickname"
t.string "name"
t.string "image"
t.string "bitcoin_address"
t.string "login_token"
t.string "nickname", limit: 255
t.string "name", limit: 255
t.string "image", limit: 255
t.string "bitcoin_address", limit: 255
t.string "login_token", limit: 255
t.boolean "unsubscribed"
t.datetime "notified_at"
t.integer "commits_count", default: 0
t.integer "withdrawn_amount", limit: 8, default: 0
t.integer "commits_count", default: 0
t.integer "withdrawn_amount", limit: 8, default: 0
t.datetime "confirmed_at"
t.datetime "confirmation_sent_at"
t.string "confirmation_token"
t.string "unconfirmed_email"
t.string "display_name"
t.integer "denom", default: 0
t.integer "denom", default: 0
end

add_index "users", ["email"], name: "index_users_on_email", unique: true
Expand Down

0 comments on commit 3e8d3b9

Please sign in to comment.