Description:
announcement on top menu bar
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r804:b80b4e632bb0 - - 9 files changed: 122 inserted, 58 deleted
@@ -0,0 +1,25 | |||
|
1 | + = simple_form_for(@announcement) do |f| | |
|
2 | + - if @announcement.errors.any? | |
|
3 | + .form-row | |
|
4 | + .col-sm-12 | |
|
5 | + #error_explanation.alert.alert-dismissable.alert-danger | |
|
6 | + %button.close{type: "button", data: { dismiss: "alert"}, aria: {hidden: "true"}} × | |
|
7 | + %h3= "เกิดปัญหาในการบันทึกข้อมูลเนื่องจาก" | |
|
8 | + %ul | |
|
9 | + - @announcement.errors.full_messages.each do |message| | |
|
10 | + %li= message | |
|
11 | + .form-row | |
|
12 | + .col-md-6.col-12 | |
|
13 | + -# = f.input :lock_version, as: :hidden | |
|
14 | + = f.input :title | |
|
15 | + = f.input :notes, label: 'Notes (shown internally, used to organize announcements)' | |
|
16 | + = f.input :body | |
|
17 | + = f.input :author | |
|
18 | + = f.input :published | |
|
19 | + = f.input :frontpage, label: 'Display in the front page only?' | |
|
20 | + = f.input :on_nav_bar, label: 'Show on menu bar?', wrapper: :custom_boolean | |
|
21 | + = f.input :contest_only, label: 'Display in contest only?' | |
|
22 | + = f.submit "Create", class: 'btn btn-primary' | |
|
23 | + -if content_for?(:form_buttons) | |
|
24 | + = yield(:form_buttons) | |
|
25 | + / = link_to 'Back', announcements_path, class: 'btn btn-default' |
@@ -0,0 +1,5 | |||
|
1 | + class AddOnNavBarToAnnouncement < ActiveRecord::Migration[5.2] | |
|
2 | + def change | |
|
3 | + add_column :announcements, :on_nav_bar, :boolean, default: false | |
|
4 | + end | |
|
5 | + end |
@@ -90,27 +90,27 | |||
|
90 | 90 | def toggle_front |
|
91 | 91 | @announcement = Announcement.find(params[:id]) |
|
92 | 92 | @announcement.update_attributes( frontpage: !@announcement.frontpage? ) |
|
93 | 93 | respond_to do |format| |
|
94 | 94 | format.js { render partial: 'toggle_button', |
|
95 | 95 | locals: {button_id: "#announcement_toggle_front_#{@announcement.id}",button_on: @announcement.frontpage? } } |
|
96 | 96 | end |
|
97 | 97 | end |
|
98 | 98 | |
|
99 | 99 | # DELETE /announcements/1 |
|
100 | 100 | # DELETE /announcements/1.xml |
|
101 | 101 | def destroy |
|
102 | 102 | @announcement = Announcement.find(params[:id]) |
|
103 | 103 | @announcement.destroy |
|
104 | 104 | |
|
105 | 105 | respond_to do |format| |
|
106 | 106 | format.html { redirect_to(announcements_url) } |
|
107 | 107 | format.xml { head :ok } |
|
108 | 108 | end |
|
109 | 109 | end |
|
110 | 110 | |
|
111 | 111 | private |
|
112 | 112 | |
|
113 | 113 | def announcement_params |
|
114 | - params.require(:announcement).permit(:author, :body, :published, :frontpage, :contest_only, :title) | |
|
114 | + params.require(:announcement).permit(:author, :body, :published, :frontpage, :contest_only, :title, :on_nav_bar) | |
|
115 | 115 | end |
|
116 | 116 | end |
@@ -1,48 +1,53 | |||
|
1 | 1 | require 'ipaddr' |
|
2 | 2 | |
|
3 | 3 | class ApplicationController < ActionController::Base |
|
4 | 4 | protect_from_forgery |
|
5 | 5 | |
|
6 | 6 | before_action :current_user |
|
7 | + before_action :nav_announcement | |
|
7 | 8 | |
|
8 | 9 | SINGLE_USER_MODE_CONF_KEY = 'system.single_user_mode' |
|
9 | 10 | MULTIPLE_IP_LOGIN_CONF_KEY = 'right.multiple_ip_login' |
|
10 | 11 | WHITELIST_IGNORE_CONF_KEY = 'right.whitelist_ignore' |
|
11 | 12 | WHITELIST_IP_CONF_KEY = 'right.whitelist_ip' |
|
12 | 13 | |
|
13 | 14 | #report and redirect for unauthorized activities |
|
14 | 15 | def unauthorized_redirect(notice = 'You are not authorized to view the page you requested') |
|
15 | 16 | flash[:notice] = notice |
|
16 | 17 | redirect_to login_main_path |
|
17 | 18 | end |
|
18 | 19 | |
|
19 | 20 | # Returns the current logged-in user (if any). |
|
20 | 21 | def current_user |
|
21 | 22 | return nil unless session[:user_id] |
|
22 | 23 | @current_user ||= User.find(session[:user_id]) |
|
23 | 24 | end |
|
24 | 25 | |
|
26 | + def nav_announcement | |
|
27 | + @nav_announcement = Announcement.where(on_nav_bar: true) | |
|
28 | + end | |
|
29 | + | |
|
25 | 30 | def admin_authorization |
|
26 | 31 | return false unless check_valid_login |
|
27 | 32 | user = User.includes(:roles).find(session[:user_id]) |
|
28 | 33 | unless user.admin? |
|
29 | 34 | unauthorized_redirect |
|
30 | 35 | return false |
|
31 | 36 | end |
|
32 | 37 | return true |
|
33 | 38 | end |
|
34 | 39 | |
|
35 | 40 | def authorization_by_roles(allowed_roles) |
|
36 | 41 | return false unless check_valid_login |
|
37 | 42 | unless @current_user.roles.detect { |role| allowed_roles.member?(role.name) } |
|
38 | 43 | unauthorized_redirect |
|
39 | 44 | return false |
|
40 | 45 | end |
|
41 | 46 | end |
|
42 | 47 | |
|
43 | 48 | def testcase_authorization |
|
44 | 49 | #admin always has privileged |
|
45 | 50 | if @current_user.admin? |
|
46 | 51 | return true |
|
47 | 52 | end |
|
48 | 53 |
@@ -1,34 +1,45 | |||
|
1 | + %h1 Edit Announcement | |
|
2 | + | |
|
3 | + -content_for(:form_buttons) do | |
|
4 | + = link_to t(:back), announcements_path, class: 'card-link btn btn-secondary' | |
|
5 | + | |
|
6 | + = render 'form' | |
|
7 | + -# old style | |
|
1 | 8 | .container-fluid |
|
2 | 9 | %h1 Editing announcement |
|
3 | 10 | = error_messages_for :announcement |
|
4 | 11 | .row |
|
5 | 12 | .col-md-6 |
|
6 | 13 | = form_for(@announcement) do |f| |
|
7 | 14 | .form-group |
|
8 | 15 | %label Title |
|
9 | 16 | = f.text_field :title, class: 'form-control' |
|
10 | 17 | .form-group |
|
11 | 18 | %label Notes |
|
12 | 19 | (shown internally, used to organize announcements) |
|
13 | 20 | = f.text_field :notes, class: 'form-control' |
|
14 | 21 | .form-group |
|
15 | 22 | %label Body |
|
16 | 23 | = f.text_area :body, class: 'form-control', style: 'height: 200px;' |
|
17 | 24 | .form-group |
|
18 | 25 | %label Author |
|
19 | 26 | = f.text_field :author, class: 'form-control' |
|
20 | 27 | .checkbox |
|
21 | 28 | %label |
|
22 | 29 | = f.check_box :published |
|
23 | 30 | Published |
|
24 | 31 | .checkbox |
|
25 | 32 | %label |
|
26 | 33 | = f.check_box :frontpage |
|
27 | 34 | Show on front page? |
|
28 | 35 | .checkbox |
|
29 | 36 | %label |
|
37 | + = f.check_box :on_nav_bar | |
|
38 | + Show on top menu bar? | |
|
39 | + .checkbox | |
|
40 | + %label | |
|
30 | 41 | = f.check_box :contest_only |
|
31 | 42 | Show only in contest? |
|
32 | 43 | = f.submit "Update", class: 'btn btn-primary' |
|
33 | 44 | = link_to 'Show', @announcement, class: 'btn btn-default' |
|
34 | 45 | = link_to 'Back', announcements_path, class: 'btn btn-default' |
@@ -1,14 +1,22 | |||
|
1 | 1 | %h1 New announcement |
|
2 | + | |
|
3 | + -content_for(:form_buttons) do | |
|
4 | + = link_to t(:back), announcements_path, class: 'card-link btn btn-secondary' | |
|
5 | + | |
|
6 | + = render 'form' | |
|
7 | + | |
|
8 | + -# old style | |
|
2 | 9 |
|
|
3 | 10 |
|
|
4 | 11 | .row |
|
5 | 12 | .col-md-6 |
|
6 | 13 | = f.input :title |
|
7 | 14 | = f.input :notes, label: 'Notes (shown internally, used to organize announcements)' |
|
8 | 15 | = f.input :body |
|
9 | 16 | = f.input :author |
|
10 | 17 | = f.input :published |
|
11 | 18 | = f.input :frontpage, label: 'Display in the front page only?' |
|
12 | 19 | = f.input :contest_only, label: 'Display in contest only?' |
|
13 | 20 | = f.button :submit, "Create", class: 'btn btn-primary' |
|
14 | 21 | = link_to 'Back', announcements_path, class: 'btn btn-default' |
|
22 | + |
@@ -1,24 +1,27 | |||
|
1 | 1 | %p |
|
2 | 2 | %b Author: |
|
3 | 3 | = h @announcement.author |
|
4 | 4 | %p |
|
5 | 5 | %b Title: |
|
6 | 6 | = h @announcement.title |
|
7 | 7 | %p |
|
8 | 8 | %b Notes: |
|
9 | 9 | = h @announcement.notes |
|
10 | 10 | %p |
|
11 | 11 | %b Body: |
|
12 | 12 | = h markdown(@announcement.body) |
|
13 | 13 | %p |
|
14 | 14 | %b Published: |
|
15 | 15 | = h @announcement.published |
|
16 | 16 | %p |
|
17 | 17 | %b Show on front page: |
|
18 | 18 | = h @announcement.frontpage |
|
19 | 19 | %p |
|
20 | + %b Show on top menu bar: | |
|
21 | + = h @announcement.on_nav_bar | |
|
22 | + %p | |
|
20 | 23 | %b Show only in contest: |
|
21 | 24 | = h @announcement.contest_only |
|
22 | 25 | = link_to 'Edit', edit_announcement_path(@announcement) |
|
23 | 26 | | |
|
24 | 27 | = link_to 'Back', announcements_path |
@@ -49,48 +49,54 | |||
|
49 | 49 | = add_menu( 'Tags', 'tags', 'index') |
|
50 | 50 | = add_menu( 'Users', 'user_admin', 'index') |
|
51 | 51 | = add_menu( 'User Groups', 'groups', 'index') |
|
52 | 52 | = add_menu( 'Graders', 'graders', 'list') |
|
53 | 53 | = add_menu( 'Message ', 'messages', 'console') |
|
54 | 54 | %li.divider{role: 'separator'} |
|
55 | 55 | = add_menu( 'System config', 'configurations', 'index') |
|
56 | 56 | %li.divider{role: 'separator'} |
|
57 | 57 | = add_menu( 'Sites', 'sites', 'index') |
|
58 | 58 | = add_menu( 'Contests', 'contest_management', 'index') |
|
59 | 59 | / report |
|
60 | 60 | %li.dropdown |
|
61 | 61 | %a.dropdown-toggle{href: '#', data: {toggle:'dropdown'}, aria: {haspopup:"true", expanded:"false"}, role: "button"} |
|
62 | 62 | Report |
|
63 | 63 | %span.caret |
|
64 | 64 | %ul.dropdown-menu |
|
65 | 65 | = add_menu( 'Current Score', 'report', 'current_score') |
|
66 | 66 | = add_menu( 'Score Report', 'report', 'max_score') |
|
67 | 67 | = add_menu( 'Submission Report', 'report', 'submission') |
|
68 | 68 | = add_menu( 'Login Report', 'report', 'login') |
|
69 | 69 | - if (ungraded = Submission.where('graded_at is null').where('submitted_at < ?', 1.minutes.ago).count) > 0 |
|
70 | 70 | =link_to "#{ungraded} backlogs!", |
|
71 | 71 | graders_list_path, |
|
72 | 72 | class: 'navbar-btn btn btn-default btn-warning', data: {toggle: 'tooltip'},title: 'Number of ungraded submission' |
|
73 | + / announcement | |
|
74 | + - @nav_announcement.each do |ann| | |
|
75 | + %p.navbar-text | |
|
76 | + = ann.body.html_safe | |
|
77 | + | |
|
78 | + | |
|
73 | 79 | |
|
74 | 80 | %ul.nav.navbar-nav.navbar-right |
|
75 | 81 | = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-question-sign')}".html_safe, 'main', 'help') |
|
76 | 82 | = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-comment')}".html_safe, 'messages', 'index', {title: I18n.t('menu.messages'), data: {toggle: 'tooltip'}}) |
|
77 | 83 | - if GraderConfiguration['system.user_setting_enabled'] |
|
78 | 84 | = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-cog', id: 'user_profile')}".html_safe, 'users', 'profile', {title: I18n.t('menu.settings'), data: {toggle: 'tooltip'}}) |
|
79 | 85 | = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-log-out')} #{@current_user.full_name}".html_safe, 'main', 'login', {title: I18n.t('menu.log_out'), data: {toggle: 'tooltip'}}) |
|
80 | 86 | |
|
81 | 87 | / |
|
82 | 88 | - if (@current_user!=nil) and (session[:admin]) |
|
83 | 89 | %nav.navbar.navbar-fixed-top.navbar-inverse.secondnavbar |
|
84 | 90 | .container-fluid |
|
85 | 91 | .collapse.navbar-collapse |
|
86 | 92 | %ul.nav.navbar-nav |
|
87 | 93 | = add_menu( '[Announcements]', 'announcements', 'index') |
|
88 | 94 | = add_menu( '[Msg console]', 'messages', 'console') |
|
89 | 95 | = add_menu( '[Problems]', 'problems', 'index') |
|
90 | 96 | = add_menu( '[Users]', 'user_admin', 'index') |
|
91 | 97 | = add_menu( '[Results]', 'user_admin', 'user_stat') |
|
92 | 98 | = add_menu( '[Report]', 'report', 'multiple_login') |
|
93 | 99 | = add_menu( '[Graders]', 'graders', 'list') |
|
94 | 100 | = add_menu( '[Contests]', 'contest_management', 'index') |
|
95 | 101 | = add_menu( '[Sites]', 'sites', 'index') |
|
96 | 102 | = add_menu( '[System config]', 'configurations', 'index') |
@@ -1,310 +1,311 | |||
|
1 | 1 | # This file is auto-generated from the current state of the database. Instead |
|
2 | 2 | # of editing this file, please use the migrations feature of Active Record to |
|
3 | 3 | # incrementally modify your database, and then regenerate this schema definition. |
|
4 | 4 | # |
|
5 | 5 | # Note that this schema.rb definition is the authoritative source for your |
|
6 | 6 | # database schema. If you need to create the application database on another |
|
7 | 7 | # system, you should be using db:schema:load, not running all the migrations |
|
8 | 8 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations |
|
9 | 9 | # you'll amass, the slower it'll run and the greater likelihood for issues). |
|
10 | 10 | # |
|
11 | 11 | # It's strongly recommended that you check this file into your version control system. |
|
12 | 12 | |
|
13 |
- ActiveRecord::Schema.define(version: 202 |
|
|
13 | + ActiveRecord::Schema.define(version: 2021_01_24_101028) do | |
|
14 | 14 | |
|
15 |
- create_table "announcements", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
15 | + create_table "announcements", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
16 | 16 | t.string "author" |
|
17 | 17 | t.text "body" |
|
18 | 18 | t.boolean "published" |
|
19 | - t.datetime "created_at" | |
|
20 | - t.datetime "updated_at" | |
|
19 | + t.datetime "created_at", null: false | |
|
20 | + t.datetime "updated_at", null: false | |
|
21 | 21 | t.boolean "frontpage", default: false |
|
22 | 22 | t.boolean "contest_only", default: false |
|
23 | 23 | t.string "title" |
|
24 | 24 | t.string "notes" |
|
25 | + t.boolean "on_nav_bar", default: false | |
|
25 | 26 | end |
|
26 | 27 | |
|
27 |
- create_table "contests", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
28 | + create_table "contests", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
28 | 29 | t.string "title" |
|
29 | 30 | t.boolean "enabled" |
|
30 | - t.datetime "created_at" | |
|
31 | - t.datetime "updated_at" | |
|
31 | + t.datetime "created_at", null: false | |
|
32 | + t.datetime "updated_at", null: false | |
|
32 | 33 | t.string "name" |
|
33 | 34 | end |
|
34 | 35 | |
|
35 |
- create_table "contests_problems", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
36 | + create_table "contests_problems", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
36 | 37 | t.integer "contest_id" |
|
37 | 38 | t.integer "problem_id" |
|
38 | 39 | end |
|
39 | 40 | |
|
40 |
- create_table "contests_users", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
41 | + create_table "contests_users", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
41 | 42 | t.integer "contest_id" |
|
42 | 43 | t.integer "user_id" |
|
43 | 44 | end |
|
44 | 45 | |
|
45 |
- create_table "countries", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
46 | + create_table "countries", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
46 | 47 | t.string "name" |
|
47 | - t.datetime "created_at" | |
|
48 | - t.datetime "updated_at" | |
|
48 | + t.datetime "created_at", null: false | |
|
49 | + t.datetime "updated_at", null: false | |
|
49 | 50 | end |
|
50 | 51 | |
|
51 |
- create_table "descriptions", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
52 | + create_table "descriptions", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
52 | 53 | t.text "body" |
|
53 | 54 | t.boolean "markdowned" |
|
54 | - t.datetime "created_at" | |
|
55 | - t.datetime "updated_at" | |
|
55 | + t.datetime "created_at", null: false | |
|
56 | + t.datetime "updated_at", null: false | |
|
56 | 57 | end |
|
57 | 58 | |
|
58 |
- create_table "grader_configurations", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
59 | + create_table "grader_configurations", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
59 | 60 | t.string "key" |
|
60 | 61 | t.string "value_type" |
|
61 | 62 | t.string "value" |
|
62 | - t.datetime "created_at" | |
|
63 | - t.datetime "updated_at" | |
|
63 | + t.datetime "created_at", null: false | |
|
64 | + t.datetime "updated_at", null: false | |
|
64 | 65 | t.text "description" |
|
65 | 66 | end |
|
66 | 67 | |
|
67 |
- create_table "grader_processes", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
68 | + create_table "grader_processes", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
68 | 69 | t.string "host" |
|
69 | 70 | t.integer "pid" |
|
70 | 71 | t.string "mode" |
|
71 | 72 | t.boolean "active" |
|
72 | - t.datetime "created_at" | |
|
73 | - t.datetime "updated_at" | |
|
73 | + t.datetime "created_at", null: false | |
|
74 | + t.datetime "updated_at", null: false | |
|
74 | 75 | t.integer "task_id" |
|
75 | 76 | t.string "task_type" |
|
76 | 77 | t.boolean "terminated" |
|
77 |
- t.index ["host", "pid"], name: "index_grader_processes_on_ |
|
|
78 | + t.index ["host", "pid"], name: "index_grader_processes_on_ip_and_pid" | |
|
78 | 79 | end |
|
79 | 80 | |
|
80 | 81 | create_table "groups", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t| |
|
81 | 82 | t.string "name" |
|
82 | 83 | t.string "description" |
|
83 | 84 | t.boolean "enabled", default: true |
|
84 | 85 | end |
|
85 | 86 | |
|
86 | 87 | create_table "groups_problems", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t| |
|
87 | 88 | t.integer "problem_id", null: false |
|
88 | 89 | t.integer "group_id", null: false |
|
89 | 90 | t.index ["group_id", "problem_id"], name: "index_groups_problems_on_group_id_and_problem_id" |
|
90 | 91 | end |
|
91 | 92 | |
|
92 | 93 | create_table "groups_users", options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t| |
|
93 | 94 | t.integer "group_id", null: false |
|
94 | 95 | t.integer "user_id", null: false |
|
95 | 96 | t.index ["user_id", "group_id"], name: "index_groups_users_on_user_id_and_group_id" |
|
96 | 97 | end |
|
97 | 98 | |
|
98 |
- create_table "heart_beats", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
99 | + create_table "heart_beats", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
99 | 100 | t.integer "user_id" |
|
100 | 101 | t.string "ip_address" |
|
101 | - t.datetime "created_at" | |
|
102 | - t.datetime "updated_at" | |
|
102 | + t.datetime "created_at", null: false | |
|
103 | + t.datetime "updated_at", null: false | |
|
103 | 104 | t.string "status" |
|
104 | 105 | t.index ["updated_at"], name: "index_heart_beats_on_updated_at" |
|
105 | 106 | end |
|
106 | 107 | |
|
107 |
- create_table "languages", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
108 | + create_table "languages", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
108 | 109 | t.string "name", limit: 10 |
|
109 | 110 | t.string "pretty_name" |
|
110 | 111 | t.string "ext", limit: 10 |
|
111 | 112 | t.string "common_ext" |
|
112 | 113 | end |
|
113 | 114 | |
|
114 |
- create_table "logins", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
115 | + create_table "logins", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
115 | 116 | t.integer "user_id" |
|
116 | 117 | t.string "ip_address" |
|
117 | - t.datetime "created_at" | |
|
118 | - t.datetime "updated_at" | |
|
118 | + t.datetime "created_at", null: false | |
|
119 | + t.datetime "updated_at", null: false | |
|
119 | 120 | t.index ["user_id"], name: "index_logins_on_user_id" |
|
120 | 121 | end |
|
121 | 122 | |
|
122 |
- create_table "messages", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
123 | + create_table "messages", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
123 | 124 | t.integer "sender_id" |
|
124 | 125 | t.integer "receiver_id" |
|
125 | 126 | t.integer "replying_message_id" |
|
126 | 127 | t.text "body" |
|
127 | 128 | t.boolean "replied" |
|
128 | - t.datetime "created_at" | |
|
129 | - t.datetime "updated_at" | |
|
129 | + t.datetime "created_at", null: false | |
|
130 | + t.datetime "updated_at", null: false | |
|
130 | 131 | end |
|
131 | 132 | |
|
132 |
- create_table "problems", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
133 | + create_table "problems", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
133 | 134 | t.string "name", limit: 30 |
|
134 | 135 | t.string "full_name" |
|
135 | 136 | t.integer "full_score" |
|
136 | 137 | t.date "date_added" |
|
137 | 138 | t.boolean "available" |
|
138 | 139 | t.string "url" |
|
139 | 140 | t.integer "description_id" |
|
140 | 141 | t.boolean "test_allowed" |
|
141 | 142 | t.boolean "output_only" |
|
142 | 143 | t.string "description_filename" |
|
143 | 144 | t.boolean "view_testcase" |
|
144 | 145 | end |
|
145 | 146 | |
|
146 | 147 | create_table "problems_tags", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t| |
|
147 | 148 | t.integer "problem_id" |
|
148 | 149 | t.integer "tag_id" |
|
149 | 150 | t.index ["problem_id", "tag_id"], name: "index_problems_tags_on_problem_id_and_tag_id", unique: true |
|
150 | 151 | t.index ["problem_id"], name: "index_problems_tags_on_problem_id" |
|
151 | 152 | t.index ["tag_id"], name: "index_problems_tags_on_tag_id" |
|
152 | 153 | end |
|
153 | 154 | |
|
154 |
- create_table "rights", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
155 | + create_table "rights", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
155 | 156 | t.string "name" |
|
156 | 157 | t.string "controller" |
|
157 | 158 | t.string "action" |
|
158 | 159 | end |
|
159 | 160 | |
|
160 |
- create_table "rights_roles", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
161 | + create_table "rights_roles", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
161 | 162 | t.integer "right_id" |
|
162 | 163 | t.integer "role_id" |
|
163 | 164 | t.index ["role_id"], name: "index_rights_roles_on_role_id" |
|
164 | 165 | end |
|
165 | 166 | |
|
166 |
- create_table "roles", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
167 | + create_table "roles", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
167 | 168 | t.string "name" |
|
168 | 169 | end |
|
169 | 170 | |
|
170 |
- create_table "roles_users", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
171 | + create_table "roles_users", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
171 | 172 | t.integer "role_id" |
|
172 | 173 | t.integer "user_id" |
|
173 | 174 | t.index ["user_id"], name: "index_roles_users_on_user_id" |
|
174 | 175 | end |
|
175 | 176 | |
|
176 |
- create_table "sessions", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
177 | + create_table "sessions", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
177 | 178 | t.string "session_id" |
|
178 | 179 | t.text "data" |
|
179 | 180 | t.datetime "updated_at" |
|
180 | 181 | t.index ["session_id"], name: "index_sessions_on_session_id" |
|
181 | 182 | t.index ["updated_at"], name: "index_sessions_on_updated_at" |
|
182 | 183 | end |
|
183 | 184 | |
|
184 |
- create_table "sites", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
185 | + create_table "sites", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
185 | 186 | t.string "name" |
|
186 | 187 | t.boolean "started" |
|
187 | 188 | t.datetime "start_time" |
|
188 | - t.datetime "created_at" | |
|
189 | - t.datetime "updated_at" | |
|
189 | + t.datetime "created_at", null: false | |
|
190 | + t.datetime "updated_at", null: false | |
|
190 | 191 | t.integer "country_id" |
|
191 | 192 | t.string "password" |
|
192 | 193 | end |
|
193 | 194 | |
|
194 |
- create_table "submission_view_logs", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
195 | + create_table "submission_view_logs", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
195 | 196 | t.integer "user_id" |
|
196 | 197 | t.integer "submission_id" |
|
197 | - t.datetime "created_at" | |
|
198 | - t.datetime "updated_at" | |
|
198 | + t.datetime "created_at", null: false | |
|
199 | + t.datetime "updated_at", null: false | |
|
199 | 200 | end |
|
200 | 201 | |
|
201 |
- create_table "submissions", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
202 | + create_table "submissions", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
202 | 203 | t.integer "user_id" |
|
203 | 204 | t.integer "problem_id" |
|
204 | 205 | t.integer "language_id" |
|
205 | 206 | t.text "source", limit: 16777215 |
|
206 | 207 | t.binary "binary" |
|
207 | 208 | t.datetime "submitted_at" |
|
208 | 209 | t.datetime "compiled_at" |
|
209 | 210 | t.text "compiler_message" |
|
210 | 211 | t.datetime "graded_at" |
|
211 | 212 | t.integer "points" |
|
212 | 213 | t.text "grader_comment" |
|
213 | 214 | t.integer "number" |
|
214 | 215 | t.string "source_filename" |
|
215 | 216 | t.float "max_runtime" |
|
216 | 217 | t.integer "peak_memory" |
|
217 | 218 | t.integer "effective_code_length" |
|
218 | 219 | t.string "ip_address" |
|
219 | 220 | t.index ["submitted_at"], name: "index_submissions_on_submitted_at" |
|
220 | 221 | t.index ["user_id", "problem_id", "number"], name: "index_submissions_on_user_id_and_problem_id_and_number", unique: true |
|
221 | 222 | t.index ["user_id", "problem_id"], name: "index_submissions_on_user_id_and_problem_id" |
|
222 | 223 | end |
|
223 | 224 | |
|
224 | 225 | create_table "tags", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t| |
|
225 | 226 | t.string "name", null: false |
|
226 | 227 | t.text "description" |
|
227 | 228 | t.boolean "public" |
|
228 | 229 | t.datetime "created_at", null: false |
|
229 | 230 | t.datetime "updated_at", null: false |
|
230 | 231 | end |
|
231 | 232 | |
|
232 |
- create_table "tasks", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
233 | + create_table "tasks", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
233 | 234 | t.integer "submission_id" |
|
234 | 235 | t.datetime "created_at" |
|
235 | 236 | t.integer "status" |
|
236 | 237 | t.datetime "updated_at" |
|
237 | 238 | t.index ["submission_id"], name: "index_tasks_on_submission_id" |
|
238 | 239 | end |
|
239 | 240 | |
|
240 |
- create_table "test_pairs", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
241 | + create_table "test_pairs", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
241 | 242 | t.integer "problem_id" |
|
242 | 243 | t.text "input", limit: 16777215 |
|
243 | 244 | t.text "solution", limit: 16777215 |
|
244 | - t.datetime "created_at" | |
|
245 | - t.datetime "updated_at" | |
|
245 | + t.datetime "created_at", null: false | |
|
246 | + t.datetime "updated_at", null: false | |
|
246 | 247 | end |
|
247 | 248 | |
|
248 |
- create_table "test_requests", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
249 | + create_table "test_requests", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
249 | 250 | t.integer "user_id" |
|
250 | 251 | t.integer "problem_id" |
|
251 | 252 | t.integer "submission_id" |
|
252 | 253 | t.string "input_file_name" |
|
253 | 254 | t.string "output_file_name" |
|
254 | 255 | t.string "running_stat" |
|
255 | 256 | t.integer "status" |
|
256 | - t.datetime "updated_at" | |
|
257 | + t.datetime "updated_at", null: false | |
|
257 | 258 | t.datetime "submitted_at" |
|
258 | 259 | t.datetime "compiled_at" |
|
259 | 260 | t.text "compiler_message" |
|
260 | 261 | t.datetime "graded_at" |
|
261 | 262 | t.string "grader_comment" |
|
262 | - t.datetime "created_at" | |
|
263 | + t.datetime "created_at", null: false | |
|
263 | 264 | t.float "running_time" |
|
264 | 265 | t.string "exit_status" |
|
265 | 266 | t.integer "memory_usage" |
|
266 | 267 | t.index ["user_id", "problem_id"], name: "index_test_requests_on_user_id_and_problem_id" |
|
267 | 268 | end |
|
268 | 269 | |
|
269 | 270 | create_table "testcases", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t| |
|
270 | 271 | t.integer "problem_id" |
|
271 | 272 | t.integer "num" |
|
272 | 273 | t.integer "group" |
|
273 | 274 | t.integer "score" |
|
274 | 275 | t.text "input", limit: 4294967295 |
|
275 | 276 | t.text "sol", limit: 4294967295 |
|
276 | 277 | t.datetime "created_at" |
|
277 | 278 | t.datetime "updated_at" |
|
278 | 279 | t.index ["problem_id"], name: "index_testcases_on_problem_id" |
|
279 | 280 | end |
|
280 | 281 | |
|
281 |
- create_table "user_contest_stats", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
282 | + create_table "user_contest_stats", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
282 | 283 | t.integer "user_id" |
|
283 | 284 | t.datetime "started_at" |
|
284 | - t.datetime "created_at" | |
|
285 | - t.datetime "updated_at" | |
|
285 | + t.datetime "created_at", null: false | |
|
286 | + t.datetime "updated_at", null: false | |
|
286 | 287 | t.boolean "forced_logout" |
|
287 | 288 | end |
|
288 | 289 | |
|
289 |
- create_table "users", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET= |
|
|
290 | + create_table "users", id: :integer, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t| | |
|
290 | 291 | t.string "login", limit: 50 |
|
291 | 292 | t.string "full_name" |
|
292 | 293 | t.string "hashed_password" |
|
293 | 294 | t.string "salt", limit: 5 |
|
294 | 295 | t.string "alias" |
|
295 | 296 | t.string "email" |
|
296 | 297 | t.integer "site_id" |
|
297 | 298 | t.integer "country_id" |
|
298 | 299 | t.boolean "activated", default: false |
|
299 | 300 | t.datetime "created_at" |
|
300 | 301 | t.datetime "updated_at" |
|
301 | - t.string "section" | |
|
302 | 302 | t.boolean "enabled", default: true |
|
303 | 303 | t.string "remark" |
|
304 | 304 | t.string "last_ip" |
|
305 | + t.string "section" | |
|
305 | 306 | t.index ["login"], name: "index_users_on_login", unique: true |
|
306 | 307 | end |
|
307 | 308 | |
|
308 | 309 | add_foreign_key "problems_tags", "problems" |
|
309 | 310 | add_foreign_key "problems_tags", "tags" |
|
310 | 311 | end |
You need to be logged in to leave comments.
Login now