aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions/oci2.sql
blob: 5ac62b0062c2742403ecca6f0d4122a68762bbfc (plain) (blame)
1
2
3
4
5
6
create sequence rails_sequence minvalue 10000;

create table courses (
  id int not null primary key,
  name varchar(255) not null
);