~cytrogen/masto-fe

ref: cc4560d95bae267a8f9281f9f559f8a08b87bd85 masto-fe/db/migrate/20190904222339_create_markers.rb -rw-r--r-- 464 bytes
cc4560d9 — Claire Change “privacy and reach” settings so that unchecking boxes always increase privacy and checking them always increase reach (#26508) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class CreateMarkers < ActiveRecord::Migration[5.2]
  def change
    create_table :markers do |t|
      t.references :user, foreign_key: { on_delete: :cascade, index: false }
      t.string :timeline, default: '', null: false
      t.bigint :last_read_id, default: 0, null: false
      t.integer :lock_version, default: 0, null: false

      t.timestamps
    end

    add_index :markers, [:user_id, :timeline], unique: true
  end
end