Skip to content
Snippets Groups Projects

WIP: Initial custom emoji implementation

Open username-removed-117638 requested to merge 13931-custom-emoji-implementation into master
1 unresolved thread

What does this MR do?

Are there points in the code the reviewer needs to double check?

Why was this MR needed?

Screenshots (if relevant)

Does this MR meet the acceptance criteria?

What are the relevant issue numbers?

Closes #13931 (moved)

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
1 class CreateCustomEmoji < ActiveRecord::Migration
2 DOWNTIME = false
3
4 def change
5 create_table :custom_emoji do |t|
6 t.references :namespace, index: true, foreign_key: { on_delete: :cascade }
7 t.string :name, nil: false
8 t.string :file, nil: false
9 t.datetime_with_timezone :created_at
Please register or sign in to reply
Loading