mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
10 lines
209 B
Ruby
10 lines
209 B
Ruby
class CreateAssets < ActiveRecord::Migration
|
|
def change
|
|
create_table :assets do |t|
|
|
|
|
t.timestamps null: false
|
|
end
|
|
add_attachment :assets, :file
|
|
add_index :assets, :created_at
|
|
end
|
|
end
|