summaryrefslogtreecommitdiff
path: root/db/migrate/20210520013553_create_chat_rooms.rb
blob: fadba6445f06babc8faa75ad284001844e495bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateChatRooms < ActiveRecord::Migration[6.1]
  def change
    create_table :chat_rooms do |t|
      t.string :gid
      t.string :name
      t.integer :permission_level

      t.timestamps
    end
  end
end