medicode / priv /repo /migrations /20240130154023_add_timestamps_to_tables.exs
timgremore's picture
chore: Rename app to Medicode
3f219b5
raw
history blame contribute delete
No virus
287 Bytes
defmodule Medicode.Repo.Migrations.AddTimestampsToTables do
use Ecto.Migration
def change do
alter table("code_feedbacks") do
timestamps(default: fragment("now()"))
end
alter table("code_vectors") do
timestamps(default: fragment("now()"))
end
end
end