mirror of
https://github.com/internetee/registry.git
synced 2025-06-04 11:47:30 +02:00
9 lines
No EOL
213 B
Ruby
9 lines
No EOL
213 B
Ruby
class CreateActions < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :actions do |t|
|
|
t.belongs_to :user, foreign_key: true
|
|
t.string :operation
|
|
t.datetime :created_at
|
|
end
|
|
end
|
|
end |