Skip to content

Commit

Permalink
Fix schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopen committed Dec 17, 2022
1 parent 1a3e005 commit 9740ffe
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@

create_table "announcements", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
t.bigint "conference_id", null: false
t.datetime "publish_time"
t.text "body", size: :medium
t.datetime "publish_time", precision: nil
t.text "body"
t.boolean "publish"
t.index ["conference_id"], name: "index_announcements_on_conference_id"
end
Expand Down Expand Up @@ -130,12 +130,12 @@
t.datetime "updated_at", null: false
t.string "abbr"
t.integer "status", default: 0, null: false
t.text "theme", size: :medium
t.text "about", size: :medium
t.text "privacy_policy", size: :medium
t.text "coc", size: :medium
t.text "theme"
t.text "about"
t.text "privacy_policy"
t.text "coc"
t.string "copyright"
t.text "privacy_policy_for_speaker", size: :medium
t.text "privacy_policy_for_speaker"
t.integer "speaker_entry"
t.integer "attendee_entry"
t.integer "show_timetable"
Expand Down Expand Up @@ -194,8 +194,8 @@
t.bigint "talk_id", null: false
t.string "job_id"
t.string "status"
t.datetime "start_time"
t.datetime "end_time"
t.datetime "start_time", precision: nil
t.datetime "end_time", precision: nil
t.index ["conference_id"], name: "index_media_package_harvest_jobs_on_conference_id"
t.index ["media_package_channel_id"], name: "index_media_package_harvest_jobs_on_media_package_channel_id"
t.index ["talk_id"], name: "index_media_package_harvest_jobs_on_talk_id"
Expand Down Expand Up @@ -340,7 +340,7 @@

create_table "speaker_announcements", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
t.bigint "conference_id", null: false
t.datetime "publish_time", null: false
t.datetime "publish_time", precision: nil, null: false
t.text "body", null: false
t.boolean "publish", default: false
t.datetime "created_at", null: false
Expand All @@ -351,17 +351,17 @@

create_table "speakers", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
t.string "name"
t.text "profile", size: :medium
t.text "profile"
t.string "company"
t.string "job_title"
t.string "twitter_id"
t.string "github_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.text "avatar_data", size: :medium
t.text "avatar_data"
t.integer "conference_id"
t.text "email", size: :medium
t.text "sub", size: :medium
t.text "email"
t.text "sub"
t.text "additional_documents"
t.string "name_mother_tongue"
end
Expand All @@ -371,7 +371,7 @@
t.string "type"
t.string "title"
t.string "url"
t.text "text", size: :medium
t.text "text"
t.string "link"
t.boolean "public"
t.string "file_data"
Expand Down Expand Up @@ -404,7 +404,7 @@
create_table "sponsors", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
t.string "name"
t.string "abbr"
t.text "description", size: :medium
t.text "description"
t.string "url"
t.bigint "conference_id", null: false
t.datetime "created_at", null: false
Expand Down Expand Up @@ -452,7 +452,7 @@

create_table "talks", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
t.string "title"
t.text "abstract", size: :medium
t.text "abstract"
t.string "movie_url"
t.time "start_time"
t.time "end_time"
Expand Down Expand Up @@ -513,8 +513,8 @@
t.string "url"
t.integer "status", default: 0, null: false
t.json "statistics", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.datetime "created_at", precision: nil, null: false
t.datetime "updated_at", precision: nil, null: false
t.index ["talk_id"], name: "index_video_registrations_on_talk_id"
end

Expand All @@ -527,7 +527,7 @@
t.datetime "updated_at", null: false
t.string "video_id"
t.string "slido_id"
t.text "video_file_data", size: :medium
t.text "video_file_data"
end

create_table "viewer_counts", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
Expand Down

0 comments on commit 9740ffe

Please sign in to comment.