mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-05 07:03:51 +08:00
10 lines
192 B
Ruby
10 lines
192 B
Ruby
|
class CreateMyModuleGroups < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :my_module_groups do |t|
|
||
|
t.string :name, null: false
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|