mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:41:41 +00:00
12 lines
229 B
Ruby
12 lines
229 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateLogEntries < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
create_table :log_entries do |t|
|
||
|
t.timestamps
|
||
|
t.belongs_to :site, index: true
|
||
|
t.text :text
|
||
|
end
|
||
|
end
|
||
|
end
|