thingspeak/db/schema.rb

402 lines
14 KiB
Ruby
Raw Normal View History

# encoding: UTF-8
2011-03-27 22:56:15 +02:00
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
2011-03-27 22:56:15 +02:00
ActiveRecord::Schema.define(version: 20140203191645) do
2011-03-27 22:56:15 +02:00
create_table "api_keys", force: true do |t|
t.string "api_key", limit: 16
2011-03-27 22:56:15 +02:00
t.integer "channel_id"
t.integer "user_id"
t.boolean "write_flag", default: false
2011-03-27 22:56:15 +02:00
t.datetime "created_at"
t.datetime "updated_at"
t.string "note"
end
add_index "api_keys", ["api_key"], name: "index_api_keys_on_api_key", unique: true, using: :btree
add_index "api_keys", ["channel_id"], name: "index_api_keys_on_channel_id", using: :btree
2011-03-27 22:56:15 +02:00
create_table "channels", force: true do |t|
2011-03-27 22:56:15 +02:00
t.integer "user_id"
t.string "name"
t.string "description"
t.decimal "latitude", precision: 15, scale: 10
t.decimal "longitude", precision: 15, scale: 10
2011-03-28 01:27:48 +02:00
t.string "field1"
t.string "field2"
t.string "field3"
t.string "field4"
t.string "field5"
t.string "field6"
t.string "field7"
t.string "field8"
2011-03-27 22:56:15 +02:00
t.integer "scale1"
t.integer "scale2"
t.integer "scale3"
t.integer "scale4"
t.integer "scale5"
t.integer "scale6"
t.integer "scale7"
t.integer "scale8"
t.datetime "created_at"
t.datetime "updated_at"
t.string "elevation"
t.integer "last_entry_id"
t.boolean "public_flag", default: false
2011-03-28 01:27:48 +02:00
t.string "options1"
t.string "options2"
t.string "options3"
t.string "options4"
t.string "options5"
t.string "options6"
t.string "options7"
t.string "options8"
t.boolean "social", default: false
t.string "slug"
t.string "status"
t.string "url"
t.string "video_id"
t.string "video_type"
t.boolean "clearing", default: false, null: false
t.integer "ranking"
2011-03-27 22:56:15 +02:00
end
add_index "channels", ["public_flag", "last_entry_id", "updated_at"], name: "channels_public_viewable", using: :btree
add_index "channels", ["ranking"], name: "index_channels_on_ranking", using: :btree
add_index "channels", ["slug"], name: "index_channels_on_slug", using: :btree
add_index "channels", ["user_id"], name: "index_channels_on_user_id", using: :btree
create_table "chart_window_details", force: true do |t|
t.integer "chart_window_id"
t.integer "field_number"
t.datetime "created_at"
t.datetime "updated_at"
t.string "options"
end
add_index "chart_window_details", ["chart_window_id"], name: "index_chart_window_details_on_chart_window_id", using: :btree
create_table "commands", force: true do |t|
t.string "command_string"
t.integer "position"
t.integer "talkback_id"
t.datetime "executed_at"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "commands", ["talkback_id", "executed_at"], name: "index_commands_on_talkback_id_and_executed_at", using: :btree
create_table "comments", force: true do |t|
t.integer "parent_id"
t.text "body"
t.integer "flags"
t.integer "user_id"
t.string "ip_address"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "channel_id"
end
add_index "comments", ["channel_id"], name: "index_comments_on_channel_id", using: :btree
create_table "daily_feeds", force: true do |t|
t.integer "channel_id"
t.date "date"
t.string "calculation", limit: 20
t.string "result"
t.integer "field", limit: 1
end
add_index "daily_feeds", ["channel_id", "date"], name: "index_daily_feeds_on_channel_id_and_date", using: :btree
create_table "devices", force: true do |t|
t.integer "user_id"
t.string "title"
t.string "model"
t.string "ip_address"
t.integer "port"
t.string "mac_address"
t.datetime "created_at"
t.datetime "updated_at"
t.string "local_ip_address"
t.integer "local_port"
t.string "default_gateway"
t.string "subnet_mask"
end
add_index "devices", ["mac_address"], name: "index_devices_on_mac_address", using: :btree
add_index "devices", ["user_id"], name: "index_devices_on_user_id", using: :btree
create_table "failedlogins", force: true do |t|
t.string "login"
t.string "password"
t.string "ip_address"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "feeds", force: true do |t|
2011-03-27 22:56:15 +02:00
t.integer "channel_id"
2011-03-28 01:27:48 +02:00
t.string "field1"
t.string "field2"
t.string "field3"
t.string "field4"
t.string "field5"
t.string "field6"
t.string "field7"
t.string "field8"
2011-03-27 22:56:15 +02:00
t.datetime "created_at"
t.datetime "updated_at"
t.integer "entry_id"
t.string "status"
t.decimal "latitude", precision: 15, scale: 10
t.decimal "longitude", precision: 15, scale: 10
2011-03-28 01:27:48 +02:00
t.string "elevation"
t.string "location"
end
add_index "feeds", ["channel_id", "created_at"], name: "index_feeds_on_channel_id_and_created_at", using: :btree
add_index "feeds", ["channel_id", "entry_id"], name: "index_feeds_on_channel_id_and_entry_id", using: :btree
create_table "headers", force: true do |t|
t.string "name"
t.string "value"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "thinghttp_id"
end
add_index "headers", ["thinghttp_id"], name: "index_headers_on_thinghttp_id", using: :btree
create_table "pipes", force: true do |t|
t.string "name", null: false
t.string "url", null: false
t.string "slug", null: false
t.datetime "created_at"
t.datetime "updated_at"
t.string "parse"
t.integer "cache"
end
add_index "pipes", ["slug"], name: "index_pipes_on_slug", using: :btree
create_table "plugin_window_details", force: true do |t|
t.integer "plugin_id"
t.integer "plugin_window_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "plugin_window_details", ["plugin_window_id"], name: "index_plugin_window_details_on_plugin_window_id", using: :btree
create_table "plugins", force: true do |t|
t.string "name"
t.integer "user_id"
t.text "html"
t.text "css"
t.text "js"
t.datetime "created_at"
t.datetime "updated_at"
t.boolean "private_flag", default: true
end
add_index "plugins", ["user_id"], name: "index_plugins_on_user_id", using: :btree
create_table "portlet_window_details", force: true do |t|
t.integer "portlet_window_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "portlet_window_details", ["portlet_window_id"], name: "index_portlet_window_details_on_portlet_window_id", using: :btree
create_table "reacts", force: true do |t|
t.integer "user_id"
t.string "name"
t.string "react_type", limit: 10
t.integer "run_interval"
t.boolean "run_on_insertion", default: true, null: false
t.datetime "last_run_at"
t.integer "channel_id"
t.integer "field_number"
t.string "condition", limit: 15
t.string "condition_value"
t.float "condition_lat"
t.float "condition_long"
t.float "condition_elev"
t.integer "actionable_id"
t.boolean "last_result", default: false
t.datetime "created_at"
t.datetime "updated_at"
t.string "actionable_type", default: "Thinghttp"
t.string "action_value"
t.string "latest_value"
t.boolean "activated", default: true
t.boolean "run_action_every_time", default: false
end
add_index "reacts", ["channel_id", "run_on_insertion"], name: "index_reacts_on_channel_id_and_run_on_insertion", using: :btree
add_index "reacts", ["channel_id"], name: "index_reacts_on_channel_id", using: :btree
add_index "reacts", ["run_interval"], name: "index_reacts_on_run_interval", using: :btree
add_index "reacts", ["user_id"], name: "index_reacts_on_user_id", using: :btree
create_table "scheduled_thinghttps", force: true do |t|
t.integer "user_id"
t.string "name"
t.boolean "activated", default: true, null: false
t.integer "run_interval"
t.integer "thinghttp_id"
t.integer "channel_id"
t.string "field_name"
t.datetime "last_run_at"
t.string "last_result"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "scheduled_thinghttps", ["activated", "run_interval"], name: "index_scheduled_thinghttps_on_activated_and_run_interval", using: :btree
add_index "scheduled_thinghttps", ["user_id"], name: "index_scheduled_thinghttps_on_user_id", using: :btree
create_table "taggings", force: true do |t|
t.integer "tag_id"
t.integer "channel_id"
t.datetime "created_at"
t.datetime "updated_at"
2011-03-27 22:56:15 +02:00
end
add_index "taggings", ["channel_id"], name: "index_taggings_on_channel_id", using: :btree
add_index "taggings", ["tag_id"], name: "index_taggings_on_tag_id", using: :btree
create_table "tags", force: true do |t|
t.string "name"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "tags", ["name"], name: "index_tags_on_name", using: :btree
create_table "talkbacks", force: true do |t|
t.string "api_key", limit: 16
t.datetime "created_at"
t.datetime "updated_at"
t.integer "user_id"
t.string "name"
t.integer "channel_id"
end
add_index "talkbacks", ["api_key"], name: "index_talkbacks_on_api_key", using: :btree
add_index "talkbacks", ["user_id"], name: "index_talkbacks_on_user_id", using: :btree
create_table "thinghttps", force: true do |t|
t.integer "user_id"
t.string "api_key", limit: 16
t.text "url"
t.string "auth_name"
t.string "auth_pass"
t.string "method"
t.string "content_type"
t.string "http_version"
t.string "host"
t.text "body"
t.datetime "created_at"
t.datetime "updated_at"
t.string "name"
t.string "parse"
end
add_index "thinghttps", ["api_key"], name: "index_thinghttps_on_api_key", using: :btree
add_index "thinghttps", ["user_id"], name: "index_thinghttps_on_user_id", using: :btree
create_table "tweetcontrols", force: true do |t|
t.string "screen_name"
t.string "trigger"
t.string "control_type"
t.integer "control_key"
t.string "control_string"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "user_id"
end
add_index "tweetcontrols", ["screen_name"], name: "index_tweetcontrols_on_screen_name", using: :btree
add_index "tweetcontrols", ["user_id"], name: "index_tweetcontrols_on_user_id", using: :btree
create_table "twitter_accounts", force: true do |t|
t.string "screen_name"
t.integer "user_id"
t.integer "twitter_id", limit: 8
t.string "token"
t.string "secret"
t.datetime "created_at"
t.datetime "updated_at"
t.string "api_key", limit: 17, null: false
end
add_index "twitter_accounts", ["api_key"], name: "index_twitters_on_api_key", using: :btree
add_index "twitter_accounts", ["twitter_id"], name: "index_twitters_on_twitter_id", using: :btree
add_index "twitter_accounts", ["user_id"], name: "index_twitters_on_user_id", using: :btree
create_table "users", force: true do |t|
t.string "login", null: false
t.string "email", null: false
t.string "crypted_password", null: false
t.string "password_salt", null: false
t.string "persistence_token", null: false
t.string "perishable_token", null: false
2011-03-27 22:56:15 +02:00
t.datetime "current_login_at"
t.datetime "last_login_at"
t.string "current_login_ip"
t.string "last_login_ip"
t.datetime "created_at"
t.datetime "updated_at"
t.string "time_zone"
t.boolean "public_flag", default: false
t.text "bio"
t.string "website"
t.string "api_key", limit: 16
end
add_index "users", ["api_key"], name: "index_users_on_api_key", using: :btree
add_index "users", ["email"], name: "index_users_on_email", using: :btree
add_index "users", ["login"], name: "index_users_on_login", using: :btree
add_index "users", ["persistence_token"], name: "index_users_on_persistence_token", using: :btree
create_table "watchings", force: true do |t|
t.integer "user_id"
t.integer "channel_id"
t.datetime "created_at"
t.datetime "updated_at"
2011-03-27 22:56:15 +02:00
end
add_index "watchings", ["user_id", "channel_id"], name: "index_watchings_on_user_id_and_channel_id", using: :btree
create_table "windows", force: true do |t|
t.integer "channel_id"
t.integer "position"
t.datetime "created_at"
t.datetime "updated_at"
t.text "html"
t.integer "col"
t.string "title"
t.string "wtype"
t.string "name"
t.string "type"
t.boolean "private_flag", default: false
t.boolean "show_flag", default: true
end
add_index "windows", ["channel_id"], name: "index_windows_on_channel_id", using: :btree
2011-03-27 22:56:15 +02:00
end