8 lines
169 B
Ruby
8 lines
169 B
Ruby
|
class CreateExperts < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
create_table :experts do |t| # rubocop:disable Style/SymbolProc
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|