💾 Archived View for gemini.rmf-dev.com › repo › Vaati › gmiChat › files › fa161efe682a2e25f41b664f8a… captured on 2023-01-29 at 03:04:19. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
0 defmodule Gmichat.Message do
1 use Ecto.Schema
2
3 @primary_key false
4 schema "messages" do
5 field :message, :string
6 belongs_to :user, Gmichat.User
7 field :timestamp, :integer
8 field :destination, :integer
9 field :dm, :boolean
10 end
11 end
12