~cytrogen/masto-fe

ref: 9e59186f78a1b170d4d15197a4bb439f66fd7e8f masto-fe/db/migrate/20170506235850_create_conversations.rb -rw-r--r-- 258 bytes
9e59186f — dependabot[bot] Bump glob from 10.2.2 to 10.2.6 (#25083) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
class CreateConversations < ActiveRecord::Migration[5.0]
  def change
    create_table :conversations, id: :bigserial do |t|
      t.string :uri, null: true, default: nil
      t.timestamps
    end

    add_index :conversations, :uri, unique: true
  end
end