about summary refs log tree commit diff
path: root/db/migrate/20170506235850_create_conversations.rb
blob: eaf66ded7c5912514d221822dd8566eea7235ca0 (plain) (blame)
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