Skip to content

Commit

Permalink
only load jquery once
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtOfCode- committed Jan 21, 2017
1 parent 5233d26 commit c19a260
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/assets/javascripts/application.js
Expand Up @@ -10,7 +10,6 @@
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require moment.min.js
Expand Down
46 changes: 46 additions & 0 deletions db/schema.rb
Expand Up @@ -63,6 +63,52 @@
t.datetime "updated_at", null: false
end

create_table "blazer_audits", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t|
t.integer "user_id"
t.integer "query_id"
t.text "statement", limit: 65535
t.string "data_source"
t.datetime "created_at"
end

create_table "blazer_checks", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t|
t.integer "creator_id"
t.integer "query_id"
t.string "state"
t.string "schedule"
t.text "emails", limit: 65535
t.string "check_type"
t.text "message", limit: 65535
t.datetime "last_run_at"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

create_table "blazer_dashboard_queries", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t|
t.integer "dashboard_id"
t.integer "query_id"
t.integer "position"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

create_table "blazer_dashboards", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t|
t.integer "creator_id"
t.text "name", limit: 65535
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

create_table "blazer_queries", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t|
t.integer "creator_id"
t.string "name"
t.text "description", limit: 65535
t.text "statement", limit: 65535
t.string "data_source"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

create_table "commit_statuses", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t|
t.string "commit_sha", collation: "utf8_unicode_ci"
t.string "status", collation: "utf8_unicode_ci"
Expand Down

0 comments on commit c19a260

Please sign in to comment.